1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-05-13 16:44:05 +00:00

8 lines
252 B
JavaScript
Raw Normal View History

2023-07-24 10:36:46 +08: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)
}
})
}