Sha256: bea0764dfee56783d920b483c3b9f7ce901f7b92492081bf99302594626ead34
Contents?: true
Size: 334 Bytes
Versions: 9
Compression:
Stored size: 334 Bytes
Contents
var typedArrayConstructor = require('../internals/typed-array-constructor'); // `Uint32Array` constructor // https://tc39.github.io/ecma262/#sec-typedarray-objects typedArrayConstructor('Uint32', 4, function (init) { return function Uint32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; });
Version data entries
9 entries across 9 versions & 3 rubygems