UNPKG

care-js

Version:

Standard library

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