]> git.r.bdr.sh - rbdr/dotfiles/blob
a926d1a32ddd7ede6fa5ec74d845f8c86c920c88
[rbdr/dotfiles] /
1 'use strict';
2
3 var setPrototypeOf = require('../object/set-prototype-of');
4
5 module.exports = (function () {
6 var SubArray;
7
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,
13 configurable: true }
14 });
15 return SubArray;
16 }());