1
0
mirror of https://github.com/musix-org/musix-oss synced 2026-05-25 23:35:22 +00:00
This commit is contained in:
MatteZ02
2019-10-10 16:43:04 +03:00
parent 6f6ac8a6fa
commit 50b9bed483
9432 changed files with 1988816 additions and 167 deletions
+4
View File
@@ -0,0 +1,4 @@
// TODO: Remove from `core-js@4`
require('../../modules/esnext.promise.all-settled');
module.exports = require('../../es/promise/all-settled');
+12
View File
@@ -0,0 +1,12 @@
'use strict';
require('../../modules/es.promise');
require('../../modules/esnext.aggregate-error');
require('../../modules/esnext.promise.any');
var path = require('../../internals/path');
var Promise = path.Promise;
var $any = Promise.any;
module.exports = function any(iterable) {
return $any.call(typeof this === 'function' ? this : Promise, iterable);
};
+1
View File
@@ -0,0 +1 @@
module.exports = require('../../es/promise/finally');
+7
View File
@@ -0,0 +1,7 @@
module.exports = require('../../es/promise');
require('../../modules/esnext.aggregate-error');
// TODO: Remove from `core-js@4`
require('../../modules/esnext.promise.all-settled');
require('../../modules/esnext.promise.try');
require('../../modules/esnext.promise.any');
+11
View File
@@ -0,0 +1,11 @@
'use strict';
require('../../modules/es.promise');
require('../../modules/esnext.promise.try');
var path = require('../../internals/path');
var Promise = path.Promise;
var promiseTry = Promise['try'];
module.exports = { 'try': function (callbackfn) {
return promiseTry.call(typeof this === 'function' ? this : Promise, callbackfn);
} }['try'];