source: frontend/node_modules/core-js-pure/es/promise/any.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

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