Files
GNX-mailEnterprise/frontend/node_modules/yargs/build/lib/utils/set-blocking.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

13 lines
386 B
JavaScript

export default function setBlocking(blocking) {
if (typeof process === 'undefined')
return;
[process.stdout, process.stderr].forEach(_stream => {
const stream = _stream;
if (stream._handle &&
stream.isTTY &&
typeof stream._handle.setBlocking === 'function') {
stream._handle.setBlocking(blocking);
}
});
}