summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.typed.uint8-array.js
blob: f794f86cf1cd6e086701ba53822e250835090818 (plain)
1
2
3
4
5
require('./_typed-array')('Uint8', 1, function(init){
  return function Uint8Array(data, byteOffset, length){
    return init(this, data, byteOffset, length);
  };
});