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