Files

8 lines
252 B
JavaScript
Raw Permalink Normal View History

2026-02-04 00:11:19 +05:00
module.exports = function (blocking) {
[process.stdout, process.stderr].forEach(function (stream) {
if (stream._handle && stream.isTTY && typeof stream._handle.setBlocking === 'function') {
stream._handle.setBlocking(blocking)
}
})
}