2016-10-10 03:43:44 +02:00
|
|
|
'use strict';
|
|
|
|
// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
|
2017-04-20 03:09:25 +02:00
|
|
|
var $export = require('./$.export')
|
|
|
|
, $find = require('./$.array-methods')(5)
|
2016-10-10 03:43:44 +02:00
|
|
|
, KEY = 'find'
|
|
|
|
, forced = true;
|
|
|
|
// Shouldn't skip holes
|
|
|
|
if(KEY in [])Array(1)[KEY](function(){ forced = false; });
|
|
|
|
$export($export.P + $export.F * forced, 'Array', {
|
|
|
|
find: function find(callbackfn/*, that = undefined */){
|
|
|
|
return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
|
|
}
|
|
|
|
});
|
2017-04-20 03:09:25 +02:00
|
|
|
require('./$.add-to-unscopables')(KEY);
|