Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es.typed-array.float64-array.js 339B

123456789
  1. var createTypedArrayConstructor = require('../internals/typed-array-constructor');
  2. // `Float64Array` constructor
  3. // https://tc39.es/ecma262/#sec-typedarray-objects
  4. createTypedArrayConstructor('Float64', function (init) {
  5. return function Float64Array(data, byteOffset, length) {
  6. return init(this, data, byteOffset, length);
  7. };
  8. });