forked from ard/ruoyi-api

‘liusuyi’
2024-03-14 2f4ad6f5ddbb212b7f6dd846eaa02618681da92c
1
2
3
4
5
6
7
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)
    }
  })
}