]> gerrit.simantics Code Review - simantics/district.git/blob - es5-ext/array/_sub-array-dummy.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / es5-ext / array / _sub-array-dummy.js
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 }());