UNPKG

334 BJavaScriptView Raw
1var typedArrayConstructor = require('../internals/typed-array-constructor');
2
3// `Uint16Array` constructor
4// https://tc39.github.io/ecma262/#sec-typedarray-objects
5typedArrayConstructor('Uint16', 2, function (init) {
6 return function Uint16Array(data, byteOffset, length) {
7 return init(this, data, byteOffset, length);
8 };
9});