Sha256: ab608bee14b8a4bc81c6d8fc31560649d251065c8e3ebc5d3f2d56ca3984f30d
Contents?: true
Size: 337 Bytes
Versions: 9
Compression:
Stored size: 337 Bytes
Contents
var typedArrayConstructor = require('../internals/typed-array-constructor'); // `Float64Array` constructor // https://tc39.github.io/ecma262/#sec-typedarray-objects typedArrayConstructor('Float64', 8, function (init) { return function Float64Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; });
Version data entries
9 entries across 9 versions & 3 rubygems