UNPKG

core-js

Version:
8 lines (7 loc) 282 B
// `Uint32Array` constructor // https://tc39.github.io/ecma262/#sec-typedarray-objects require('../internals/typed-array-constructor')('Uint32', 4, function (init) { return function Uint32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; });