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