parcoursup/node_modules/p-try/index.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

10 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;