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.join.js 518B

12345678910111213
  1. 'use strict';
  2. var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
  3. var aTypedArray = ArrayBufferViewCore.aTypedArray;
  4. var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
  5. var $join = [].join;
  6. // `%TypedArray%.prototype.join` method
  7. // https://tc39.es/ecma262/#sec-%typedarray%.prototype.join
  8. // eslint-disable-next-line no-unused-vars -- required for `.length`
  9. exportTypedArrayMethod('join', function join(separator) {
  10. return $join.apply(aTypedArray(this), arguments);
  11. });