Skip to content

isConstructorLike looks at non-enumerable properties

Choose a tag to compare

@justinbmeyer justinbmeyer released this 23 Jun 20:57
· 317 commits to master since this release

Fixed #18 ... make constructors like the following work:

SomeConstructor = function(){

}
SomeConstructor.prototype[symbol] = function(){ ... }
assignNonEnumerable( SomeConstructor.prototype, {anything: function(){}})