mirror of
https://github.com/actions/setup-python.git
synced 2024-11-14 03:19:24 -05:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
'use strict';
|
|
|
|
const pTry = (fn, ...arguments_) => new Promise(resolve => {
|
|
resolve(fn(...arguments_));
|
|
});
|
|
|
|
module.exports = pTry;
|
|
// TODO: remove this in the next major version
|
|
module.exports.default = pTry;
|