Socket
Socket
Sign inDemoInstall

inquirer

Package Overview
Dependencies
Maintainers
1
Versions
176
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 1.1.2 to 1.1.3

README.md

10

lib/ui/baseUI.js

@@ -57,3 +57,3 @@ 'use strict';

// Default `input` to stdin
opt.input = opt.input || process.stdin;
var input = opt.input || process.stdin;

@@ -63,7 +63,9 @@ // Add mute capabilities to the output

ms.pipe(opt.output || process.stdout);
opt.output = ms;
var output = ms;
return _.extend({
terminal: true
}, opt);
terminal: true,
input: input,
output: output
}, _.omit(opt, ['input', 'output']));
}

2

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

@@ -5,0 +5,0 @@ "author": "Simon Boudrias <admin@simonboudrias.com>",

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