nouveau-theatre-de-besancon/node_modules/gulp-cli/lib/versioned/^3.7.0/format-error.js

24 lines
389 B
JavaScript
Raw Permalink Normal View History

2024-09-20 10:32:49 +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;