Your IP : 216.73.216.51


Current Path : /var/www/html/mygovuc/node_modules/p-try/
Upload File :
Current File : /var/www/html/mygovuc/node_modules/p-try/index.js

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