mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 19:23:18 +00:00
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
'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'];
|