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