csv-to-js-parser
Advanced tools
Comparing version 2.2.1 to 2.2.2
10
app.js
@@ -293,3 +293,3 @@ /* | ||
} | ||
} | ||
}; | ||
@@ -319,3 +319,3 @@ module.exports.objToCsv = function(obj, delimeter, rowDelimeter) | ||
{ | ||
out += keys[i] | ||
out += keys[i]; | ||
if (i !== keys.length - 1) out += delimeter; | ||
@@ -372,3 +372,3 @@ isConstant[i] = !Array.isArray(obj[0][keys[i]]); | ||
return out; | ||
} | ||
}; | ||
@@ -408,3 +408,3 @@ module.exports.combineArrays = function(obj, newKey, arrayKeys, newArrayKeys) | ||
return out; | ||
} | ||
}; | ||
@@ -439,2 +439,2 @@ module.exports.separateArrays = function(obj, objArrayKey, arrayKeys, newArrayKeys) | ||
return out; | ||
} | ||
}; |
{ | ||
"name": "csv-to-js-parser", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "Converting csv data into array of JavaScript objects. This module can group input data.", | ||
@@ -5,0 +5,0 @@ "main": "app.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57118