New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-fzf

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-fzf - npm Package Compare versions

Comparing version 0.9.0 to 0.10.0

2

package.json
{
"name": "node-fzf",
"version": "0.9.0",
"version": "0.10.0",
"description": "fzf ( junegunn/fzf ) inspired cli utility for node",

@@ -5,0 +5,0 @@ "main": "src/main.js",

@@ -32,2 +32,3 @@ // Gracefully restore the CLI cursor on exit

module.exports.getInput = getInput
module.exports.cliColor = clc

@@ -985,3 +986,13 @@ function getInput ( label, callback )

stdout.write( clcBgGray( clcFgArrow( '> ' ) ) )
if ( opts.prelinehook ) {
stdout.write( opts.prelinehook( match.originalIndex ) )
}
stdout.write( clcBgGray( item ) )
if ( opts.postlinehook ) {
stdout.write( opts.postlinehook( match.originalIndex ) )
}
stdout.write( '\n' )

@@ -991,3 +1002,13 @@ } else {

stdout.write( ' ' )
if ( opts.prelinehook ) {
stdout.write( opts.prelinehook( match.originalIndex ) )
}
stdout.write( item )
if ( opts.postlinehook ) {
stdout.write( opts.postlinehook( match.originalIndex ) )
}
stdout.write( '\n' )

@@ -994,0 +1015,0 @@ }

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