summaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/modules/es7.array.includes.js
blob: dcfad704d2d7fe9a186ef04fb4a271a10a5d8ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';
var $export   = require('./$.export')
  , $includes = require('./$.array-includes')(true);

$export($export.P, 'Array', {
  // https://github.com/domenic/Array.prototype.includes
  includes: function includes(el /*, fromIndex = 0 */){
    return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
  }
});

require('./$.add-to-unscopables')('includes');