Skip to content

Commit

Permalink
Fix liniting error
Browse files Browse the repository at this point in the history
  • Loading branch information
evanplaice committed Feb 12, 2018
1 parent fc54a81 commit e7ecf49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jquery.csv.js
Expand Up @@ -935,7 +935,7 @@ RegExp.escape = function (s) {

if (config.manualOrder.length > 0) {
var propsManual = [].concat(config.manualOrder);
var p;
let p;
for (p = 0; p < props.length; p++) {
if (propsManual.indexOf(props[p]) < 0) {
propsManual.push(props[p]);
Expand All @@ -944,7 +944,7 @@ RegExp.escape = function (s) {
props = propsManual;
}

var o, p, line, output = [], propName;
var o, p, line, output, propName;
if (config.headers) {
output.push(props);
}
Expand Down

0 comments on commit e7ecf49

Please sign in to comment.