source: trip-planner-front/node_modules/core-js/internals/array-for-each.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 562 bytes
Line 
1'use strict';
2var $forEach = require('../internals/array-iteration').forEach;
3var arrayMethodIsStrict = require('../internals/array-method-is-strict');
4
5var STRICT_METHOD = arrayMethodIsStrict('forEach');
6
7// `Array.prototype.forEach` method implementation
8// https://tc39.es/ecma262/#sec-array.prototype.foreach
9module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
10 return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
11// eslint-disable-next-line es/no-array-prototype-foreach -- safe
12} : [].forEach;
Note: See TracBrowser for help on using the repository browser.