You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
365 B
10 lines
365 B
'use strict'; |
|
var $export = require('./_export'); |
|
var $some = require('./_array-methods')(3); |
|
|
|
$export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Array', { |
|
// 22.1.3.23 / 15.4.4.17 Array.prototype.some(callbackfn [, thisArg]) |
|
some: function some(callbackfn /* , thisArg */) { |
|
return $some(this, callbackfn, arguments[1]); |
|
} |
|
});
|
|
|