1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/terser/tools/exit.js

16 lines
469 B
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
// workaround for tty output truncation upon process.exit()
var exit = process.exit;
process.exit = function() {
var args = [].slice.call(arguments);
process.once("uncaughtException", function() {
(function callback() {
if (process.stdout.bufferSize || process.stderr.bufferSize) {
setImmediate(callback);
} else {
exit.apply(process, args);
}
})();
});
throw exit;
};