es.array.for-each.js 300 B

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