1
0
CompleteNodeJS/notes-app/node_modules/p-try/index.js
Jason Williams 6528d7204a Section 20
2019-08-11 12:15:16 -06: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;