1'use strict';
2var $export = require('./_export');
3var $forEach = require('./_array-methods')(0);
4var STRICT = require('./_strict-method')([].forEach, true);
5
6$export($export.P + $export.F * !STRICT, 'Array', {
7  // 22.1.3.10 / 15.4.4.18 Array.prototype.forEach(callbackfn [, thisArg])
8  forEach: function forEach(callbackfn /* , thisArg */) {
9    return $forEach(this, callbackfn, arguments[1]);
10  }
11});
12