source: trip-planner-front/node_modules/core-js/modules/esnext.map.every.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: 892 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var IS_PURE = require('../internals/is-pure');
4var anObject = require('../internals/an-object');
5var bind = require('../internals/function-bind-context');
6var getMapIterator = require('../internals/get-map-iterator');
7var iterate = require('../internals/iterate');
8
9// `Map.prototype.every` method
10// https://github.com/tc39/proposal-collection-methods
11$({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
12 every: function every(callbackfn /* , thisArg */) {
13 var map = anObject(this);
14 var iterator = getMapIterator(map);
15 var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);
16 return !iterate(iterator, function (key, value, stop) {
17 if (!boundFunction(value, key, map)) return stop();
18 }, { AS_ENTRIES: true, IS_ITERATOR: true, INTERRUPTED: true }).stopped;
19 }
20});
Note: See TracBrowser for help on using the repository browser.