3 var setPrototypeOf = require('../object/set-prototype-of');
5 module.exports = (function () {
8 if (!setPrototypeOf) return null;
9 SubArray = function () { Array.apply(this, arguments); };
10 setPrototypeOf(SubArray, Array);
11 SubArray.prototype = Object.create(Array.prototype, {
12 constructor: { value: SubArray, enumerable: false, writable: true,