biofriction-wp-theme/node_modules/gulp-cli/lib/versioned/^3.7.0/format-error.js

24 lines
389 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
'use strict';
// Format orchestrator errors
function formatError(e) {
if (!e.err) {
return e.message;
}
// PluginError
if (typeof e.err.showStack === 'boolean') {
return e.err.toString();
}
// Normal error
if (e.err.stack) {
return e.err.stack;
}
// Unknown (string, number, etc.)
return new Error(String(e.err)).stack;
}
module.exports = formatError;