ouroboros-group/mybulma/node_modules/p-try/index.js
2023-07-30 18:21:54 -06:00

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;