Sha256: e9dab002982eed80fb8974d6a0060f0e02442395944b5577703038cc9c82943b
Contents?: true
Size: 469 Bytes
Versions: 51
Compression:
Stored size: 469 Bytes
Contents
// 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; };
Version data entries
51 entries across 49 versions & 12 rubygems