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

jquery-csv

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-csv - npm Package Compare versions

Comparing version 0.8.8 to 0.8.9

8

package.json
{
"name": "jquery-csv",
"version": "0.8.8",
"version": "0.8.9",
"description": "A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete",

@@ -12,3 +12,5 @@ "author": {

"chai": "^4.0",
"jquery": "^3.0"
"jquery": "^3.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},

@@ -21,3 +23,3 @@ "main": "src/jquery.csv.js",

"test": "npm run test-node",
"test-node": "npx mocha test/test.js",
"test-node": "npx tape ./test/*.js | tap-spec",
"clean": "npm run htmlhint && npm run semistandard",

@@ -24,0 +26,0 @@ "htmlhint": "npx htmlhint --config .htmlhint examples/**/*.html",

@@ -1,3 +0,6 @@

[![CDNJS](https://img.shields.io/cdnjs/v/jquery-csv.svg)](https://cdnjs.com/libraries/jquery-csv)
[![npm version](https://badge.fury.io/js/jquery-csv.svg)](https://badge.fury.io/js/jquery-csv)
[![GitHub release](https://img.shields.io/github/release/evanplaice/jquery-csv.svg)](https://github.com/evanplaice/jquery-csv/releases)
[![npm](https://img.shields.io/npm/v/jquery-csv.svg)](https://www.npmjs.com/package/jquery-csv)
[![CDNJS](https://img.shields.io/cdnjs/v/jquery.svg)](https://cdnjs.com/libraries/jquery-csv)
[![David](https://img.shields.io/david/dev/evanplaice/jquery-csv.svg)](https://david-dm.org/evanplaice/jquery-csv?type=dev)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/evanplaice/jquery-csv/master/LICENSE)
[![Build Status](https://travis-ci.org/evanplaice/jquery-csv.svg?branch=master)](https://travis-ci.org/evanplaice/jquery-csv)

@@ -4,0 +7,0 @@

@@ -872,3 +872,3 @@ /**

}
output += lineValues.join(config.separator) + '\r\n';
output += lineValues.join(config.separator) + '\n';
}

@@ -939,3 +939,3 @@

var propsManual = [].concat(config.manualOrder);
var p;
let p;
for (p = 0; p < props.length; p++) {

@@ -949,3 +949,3 @@ if (propsManual.indexOf(props[p]) < 0) {

var o, p, line, output = [], propName;
var o, p, line, output, propName;
if (config.headers) {

@@ -952,0 +952,0 @@ output.push(props);

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