1 2 3 4 5 6 7
'use strict'; require('../common'); const assert = require('assert'); const F = () => {}; F.prototype = {}; assert(Object.create(F.prototype) instanceof F);