You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
348 B
11 lines
348 B
'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'];
|
|
|