mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08: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'];
|