UNPKG

192 BJavaScriptView Raw
1module.exports = function (err) {
2 setTimeout(function () {
3 if (err instanceof Error)
4 throw err;
5 else
6 throw JSON.stringify(err, null, 4);
7 });
8};