github-pages-deploy-action/node_modules/p-try/index.js

10 lines
211 B
JavaScript
Raw Normal View History

2020-01-28 13:07:56 +08:00
'use strict';
2020-03-31 20:57:48 +08:00
const pTry = (fn, ...arguments_) => new Promise(resolve => {
resolve(fn(...arguments_));
2020-01-28 13:07:56 +08:00
});
2020-03-31 20:57:48 +08:00
module.exports = pTry;
// TODO: remove this in the next major version
module.exports.default = pTry;