Sha256: c19bcca4311140c99a4883674988df4841fd7139fdfa11596a908a951741b3b2

Contents?: true

Size: 346 Bytes

Versions: 6

Compression:

Stored size: 346 Bytes

Contents

var createTypedArrayConstructor = require('../internals/typed-array-constructor');

// `Float32Array` constructor
// https://tc39.github.io/ecma262/#sec-typedarray-objects
createTypedArrayConstructor('Float32', function (init) {
  return function Float32Array(data, byteOffset, length) {
    return init(this, data, byteOffset, length);
  };
});

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/es.typed-array.float32-array.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/es.typed-array.float32-array.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.float32-array.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.float32-array.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/es.typed-array.float32-array.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/es.typed-array.float32-array.js