• File: index.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/yargs/node_modules/p-try/index.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 211 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'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;