odin-js-fundamentals-part-5/node_modules/p-try/index.js

10 lines
211 B
JavaScript
Raw Permalink Normal View History

2024-01-11 08:52:05 +00:00
'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;