Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sv

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sv - npm Package Compare versions

Comparing version 0.3.4 to 0.3.5

4

bin/sv.js

@@ -19,2 +19,3 @@ #!/usr/bin/env node

' --in-quotechar " ',
' --in-json parse input as JSON (one object per row)',
'',

@@ -39,3 +40,3 @@ 'Stringifier options:',

.string(['delimiter', 'quotechar', 'escapechar'])
.boolean(['json', 'describe', 'merge', 'verbose', 'version'])
.boolean(['json', 'describe', 'merge', 'verbose', 'version', 'in-json'])
.alias({

@@ -52,2 +53,3 @@ j: 'json',

quotechar: argv['in-quotechar'],
json: argv['in-json'],
};

@@ -54,0 +56,0 @@ var stringifier_opts = {

@@ -56,3 +56,3 @@ 'use strict'; /*jslint node: true, es5: true, indent: 2 */

var parser = input.pipe(new Parser(parser_opts));
var parser = input.pipe((parser_opts.json) ? new streaming.json.Parser() : new Parser(parser_opts));

@@ -59,0 +59,0 @@ if (stringifier_opts.omit) {

{
"name": "sv",
"version": "0.3.4",
"version": "0.3.5",
"description": "Any separated values.",

@@ -5,0 +5,0 @@ "keywords": [

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