frontend/.pnpm-store/v3/files/f0/2c887bc58375f44a252d4f778b344c6c82e5f8d366cbc98965a7ddc613973cadfed88a342507a559cfc26fb7ddee57c2c04aca0a07007067ee20c30fca69db

16 lines
426 B
Plaintext

"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;
})();