aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/es6.typed.float64-array.js
blob: 4b20257f74c504100b7128063c8b3b81e96e9617 (plain)
1
2
3
4
5
require('./_typed-array')('Float64', 8, function(init){
  return function Float64Array(data, byteOffset, length){
    return init(this, data, byteOffset, length);
  };
});