debian-mirror-gitlab/core-js/internals/array-for-each.js

14 lines
664 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
'use strict';
var $forEach = require('../internals/array-iteration').forEach;
2020-01-12 00:16:45 +05:30
var arrayMethodIsStrict = require('../internals/array-method-is-strict');
var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');
var STRICT_METHOD = arrayMethodIsStrict('forEach');
var USES_TO_LENGTH = arrayMethodUsesToLength('forEach');
2019-09-25 13:30:05 +05:30
// `Array.prototype.forEach` method implementation
// https://tc39.github.io/ecma262/#sec-array.prototype.foreach
2020-01-12 00:16:45 +05:30
module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {
2019-09-25 13:30:05 +05:30
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
} : [].forEach;