source: node_modules/core-js-pure/es/promise/all-settled.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 582 bytes
RevLine 
[d24f17c]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 call = require('../../internals/function-call');
8var isCallable = require('../../internals/is-callable');
9var path = require('../../internals/path');
10
11var Promise = path.Promise;
12var $allSettled = Promise.allSettled;
13
14module.exports = function allSettled(iterable) {
15 return call($allSettled, isCallable(this) ? this : Promise, iterable);
16};
Note: See TracBrowser for help on using the repository browser.