.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / es.typed-array.uint16-array.js
1 var createTypedArrayConstructor = require('../internals/typed-array-constructor');
2
3 // `Uint16Array` constructor
4 // https://tc39.es/ecma262/#sec-typedarray-objects
5 createTypedArrayConstructor('Uint16', function (init) {
6   return function Uint16Array(data, byteOffset, length) {
7     return init(this, data, byteOffset, length);
8   };
9 });