522988de4e766529593600adc6942551a44a9333d8f988c27299f02b7e63e38773b3ad3d73b807135ef1a5903e8bff223845d8908fe0028e460dea8075ad14 252 B

1234567
  1. module.exports = function (blocking) {
  2. [process.stdout, process.stderr].forEach(function (stream) {
  3. if (stream._handle && stream.isTTY && typeof stream._handle.setBlocking === 'function') {
  4. stream._handle.setBlocking(blocking)
  5. }
  6. })
  7. }