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