Sha256: cfb95e7cf139dcc5fbf79e4b13f7fa9f30fedf3c7d73093ca8c5ee44d7d4aaaa
Contents?: true
Size: 480 Bytes
Versions: 300
Compression:
Stored size: 480 Bytes
Contents
/** Used for built-in method references. */ var objectProto = Object.prototype; /** * Checks if `value` is likely a prototype object. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. */ function isPrototype(value) { var Ctor = value && value.constructor, proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; return value === proto; } module.exports = isPrototype;
Version data entries
300 entries across 276 versions & 32 rubygems