Echo/node_modules/core-js/modules/es.array.for-each.js
2021-02-11 21:31:41 +08:00

10 lines
293 B
JavaScript

'use strict';
var $ = require('../internals/export');
var forEach = require('../internals/array-for-each');
// `Array.prototype.forEach` method
// https://tc39.es/ecma262/#sec-array.prototype.foreach
$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
forEach: forEach
});