All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.set-blocking.index.js Maven / Gradle / Ivy

The newest version!
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)
    }
  })
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy