blob: b7a6e3b4f0b77200790e2e9fe1e918579817b8e8 (
plain)
1
2
3
4
5
6
7
8
9
10
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'];
|