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

csvnorm

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csvnorm - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

source/formatCurrency.js

2

cli.js

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

const yargs = require('yargs')
const csvnorm = require('.')
const csvnorm = require('./source')
const {stdin, stdout, argv} = process

@@ -9,0 +9,0 @@

{
"name": "csvnorm",
"version": "0.4.0",
"version": "0.4.1",
"description": "Command line tool to normalize CSV and *SV files.",

@@ -5,0 +5,0 @@ "main": "index.js",

# Csvnorm
Command line tool to normalize CSV and *SV files.
Command line tool to normalize CSV and \*SV files.

@@ -15,4 +15,6 @@ Steps:

## Installation
## CLI Version
### Installation
```sh

@@ -27,3 +29,3 @@ npm install --global csvnorm

## Usage
### Usage

@@ -39,4 +41,44 @@ ```sh

## TODO
### TODO
- [ ] Print debugging info in TTY mode
## Node Module
### Installation
```sh
npm install --save csvnorm
```
```sh
yarn add csvnorm
```
### Usage
With files:
```js
const csvnorm = require('csvnorm')
csvnorm({
filePath: csvFilePath,
inPlace: true,
})
```
With streams:
```js
const csvnorm = require('csvnorm')
csvnorm({
readableStream: process.stdin,
writableStream: process.stdout,
})
```
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