Sha256: 84a3184ff25abe21041c6a3ccc33304f37b87f228ecbc51d494f30cbd0c53fd6
Contents?: true
Size: 429 Bytes
Versions: 29
Compression:
Stored size: 429 Bytes
Contents
'use strict'; var setPrototypeOf = require('../object/set-prototype-of'); module.exports = (function () { var SubArray; if (!setPrototypeOf) return null; SubArray = function () { Array.apply(this, arguments); }; setPrototypeOf(SubArray, Array); SubArray.prototype = Object.create(Array.prototype, { constructor: { value: SubArray, enumerable: false, writable: true, configurable: true } }); return SubArray; }());
Version data entries
29 entries across 19 versions & 7 rubygems