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