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.array.for-each.js 359B

12345678910
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var forEach = require('../internals/array-for-each');
  4. // `Array.prototype.forEach` method
  5. // https://tc39.es/ecma262/#sec-array.prototype.foreach
  6. // eslint-disable-next-line es/no-array-prototype-foreach -- safe
  7. $({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
  8. forEach: forEach
  9. });