Socket
Socket
Sign inDemoInstall

inquirer

Package Overview
Dependencies
Maintainers
3
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inquirer - npm Package Compare versions

Comparing version 7.0.1 to 7.0.2

9

lib/ui/baseUI.js

@@ -5,2 +5,3 @@ 'use strict';

var readline = require('readline');
var { PassThrough } = require('stream');

@@ -74,2 +75,10 @@ /**

if (/^win/i.test(process.platform)) {
// @see https://github.com/nodejs/node/issues/21771
// rl.close() closes main stream.
var oldInput = input;
input = new PassThrough();
oldInput.pipe(input);
}
return _.extend(

@@ -76,0 +85,0 @@ {

4

package.json
{
"name": "inquirer",
"version": "7.0.1",
"version": "7.0.2",
"description": "A collection of common interactive command line user interfaces.",

@@ -54,3 +54,3 @@ "author": "Simon Boudrias <admin@simonboudrias.com>",

},
"gitHead": "7ec6ea0d2e55895fada6782fcc76de232c1e4c12"
"gitHead": "0bc1b011e8441e663e788cba66b71ef40aed5252"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc