source: trip-planner-front/node_modules/core-js/es/promise/any.js@ ceaed42

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

initial commit

  • Property mode set to 100644
File size: 490 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 path = require('../../internals/path');
9
10var Promise = path.Promise;
11var $any = Promise.any;
12
13module.exports = function any(iterable) {
14 return $any.call(typeof this === 'function' ? this : Promise, iterable);
15};
Note: See TracBrowser for help on using the repository browser.