Socket
Socket
Sign inDemoInstall

prompt-base

Package Overview
Dependencies
87
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.2 to 4.0.3

6

index.js

@@ -828,3 +828,7 @@ 'use strict';

get: function() {
return this.question.prefix || (log.cyan('?') + ' ');
if (typeof this.question.prefix === 'undefined') {
return log.cyan('?') + ' ';
} else {
return this.question.prefix;
}
}

@@ -831,0 +835,0 @@ });

3

package.json
{
"name": "prompt-base",
"description": "Base prompt module used for creating custom prompts.",
"version": "4.0.2",
"version": "4.0.3",
"homepage": "https://github.com/enquirer/prompt-base",

@@ -9,2 +9,3 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",

"Brian Woodward (https://twitter.com/doowb)",
"James Clark (http://arbitraryclark.blogspot.com)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"

@@ -11,0 +12,0 @@ ],

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc