UNPKG

care-js

Version:

Standard library

10 lines (8 loc) 331 B
var typedArrayConstructor = require('../internals/typed-array-constructor'); // `Int32Array` constructor // https://tc39.github.io/ecma262/#sec-typedarray-objects typedArrayConstructor('Int32', 4, function (init) { return function Int32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; });