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

5 lines
82 B
JavaScript
Raw Normal View History

2020-01-28 13:07:56 +08:00
'use strict';
2020-03-22 05:13:25 +08:00
module.exports = cb => new Promise(resolve => {
resolve(cb());
2020-01-28 13:07:56 +08:00
});