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