aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.typed.uint32-array.js
blob: 41c9e7b807a51f28516d26ee0daf52f58ac1ed56 (plain)
1
2
3
4
5
require('./_typed-array')('Uint32', 4, function(init){
  return function Uint32Array(data, byteOffset, length){
    return init(this, data, byteOffset, length);
  };
});