Sha256: 490b06828a5112fde9af49ffae157e9f3b8bab787c9c86de15793d544ea269ca
Contents?: true
Size: 331 Bytes
Versions: 9
Compression:
Stored size: 331 Bytes
Contents
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); }; });
Version data entries
9 entries across 9 versions & 3 rubygems