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

csvfmt

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csvfmt - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

9

args.js

@@ -6,3 +6,4 @@ const commandLineArgs = require('command-line-args')

{ name: 'format', alias: 'f', type: String },
{ name: 'help', type: Boolean }
{ name: 'help', type: Boolean },
{ name: 'version', alias: 'v', type: Boolean }
]

@@ -12,4 +13,5 @@

if (options.help) {
console.log('csvfmt usage: https://github.com/pokle/csvfmt')
if (options.help || options.version) {
console.error('csvfmt', require(require('path').join(__dirname, 'package.json')).version)
console.error('Usage at: https://github.com/pokle/csvfmt')
process.exit(0);

@@ -19,5 +21,4 @@ }

options.files = options._unknown || []
delete options._unknown
module.exports = options
{
"name": "csvfmt",
"version": "1.0.2",
"version": "1.0.3",
"main": "index.js",

@@ -5,0 +5,0 @@ "bin": "./index.js",

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