source: trip-planner-front/node_modules/core-js/es/promise/all-settled.js@ fa375fe

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

initial commit

  • Property mode set to 100644
File size: 481 bytes
Line 
1'use strict';
2require('../../modules/es.array.iterator');
3require('../../modules/es.object.to-string');
4require('../../modules/es.promise');
5require('../../modules/es.promise.all-settled');
6require('../../modules/es.string.iterator');
7var path = require('../../internals/path');
8
9var Promise = path.Promise;
10var $allSettled = Promise.allSettled;
11
12module.exports = function allSettled(iterable) {
13 return $allSettled.call(typeof this === 'function' ? this : Promise, iterable);
14};
Note: See TracBrowser for help on using the repository browser.