parcoursup/node_modules/set-blocking/index.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

8 lines
252 B
JavaScript

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)
}
})
}