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