Sha256: 94561111551fce027535057883f495ad987d62c688206e19c1eb021e5e81b4b4
Contents?: true
Size: 430 Bytes
Versions: 46
Compression:
Stored size: 430 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
46 entries across 46 versions & 3 rubygems