Projekt

Obecné

Profil

Stáhnout (370 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2
var $export = require('./_export');
3
var $every = require('./_array-methods')(4);
4

    
5
$export($export.P + $export.F * !require('./_strict-method')([].every, true), 'Array', {
6
  // 22.1.3.5 / 15.4.4.16 Array.prototype.every(callbackfn [, thisArg])
7
  every: function every(callbackfn /* , thisArg */) {
8
    return $every(this, callbackfn, arguments[1]);
9
  }
10
});
(108-108/303)