Sha256: 05a054dd7358b82fdd023007b26b0d8e8a2fbe525527d17c12b1d3fdf01f1aac
Contents?: true
Size: 641 Bytes
Versions: 33
Compression:
Stored size: 641 Bytes
Contents
var supportsArgumentsClass = (function(){ return Object.prototype.toString.call(arguments) })() == '[object Arguments]'; exports = module.exports = supportsArgumentsClass ? supported : unsupported; exports.supported = supported; function supported(object) { return Object.prototype.toString.call(object) == '[object Arguments]'; }; exports.unsupported = unsupported; function unsupported(object){ return object && typeof object == 'object' && typeof object.length == 'number' && Object.prototype.hasOwnProperty.call(object, 'callee') && !Object.prototype.propertyIsEnumerable.call(object, 'callee') || false; };
Version data entries
33 entries across 33 versions & 10 rubygems