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

incremental-csv-parser

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

incremental-csv-parser - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

package.json
{
"name": "incremental-csv-parser",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple, browser compatible, incremental CSV parser.",

@@ -12,3 +12,3 @@ "main": "dist/cjs/index.js",

"build:types": "tsc",
"build:esm": "esbuild src/*.ts --outdir=dist/esm --format=esm --out-extension:.js=.mjs --sourcemap",
"build:esm": "esbuild src/*.ts --outdir=dist/esm --format=esm --out-extension:.js=.mjs --sourcemap --target=es6",
"build:cjs": "esbuild src/*.ts --outdir=dist/cjs --format=cjs --sourcemap",

@@ -15,0 +15,0 @@ "test": "jest",

@@ -55,3 +55,3 @@ # Incremental CSV Parser

type ColumnName = 'a' | 'b' | 'c' | 'd';
const results: Record<ColumnName, string> = [];
const results: Array<Record<ColumnName, string>> = [];

@@ -58,0 +58,0 @@ const parser = new CSVParser<ColumName>((row) => {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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