Sha256: 8b80dcc1fc9a41a4f87e378a0ce1deb646d83dc2c1d9a5f4ecb0ddf9711b0f1c
Contents?: true
Size: 340 Bytes
Versions: 6
Compression:
Stored size: 340 Bytes
Contents
var createTypedArrayConstructor = require('../internals/typed-array-constructor'); // `Int32Array` constructor // https://tc39.github.io/ecma262/#sec-typedarray-objects createTypedArrayConstructor('Int32', function (init) { return function Int32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; });
Version data entries
6 entries across 6 versions & 3 rubygems