source: trip-planner-front/node_modules/core-js/modules/esnext.array.filter-reject.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 531 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var $filterReject = require('../internals/array-iteration').filterReject;
4var addToUnscopables = require('../internals/add-to-unscopables');
5
6// `Array.prototype.filterReject` method
7// https://github.com/tc39/proposal-array-filtering
8$({ target: 'Array', proto: true }, {
9 filterReject: function filterReject(callbackfn /* , thisArg */) {
10 return $filterReject(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
11 }
12});
13
14addToUnscopables('filterReject');
Note: See TracBrowser for help on using the repository browser.