Skip to content

Commit

Permalink
adding support for ; separator. Closes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
kumo committed Oct 6, 2015
1 parent 0bfa6ff commit e44a7ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var parseUserInput = function(string) {
if (rowText == "") {
continue
}
var rowValues = rowText.split(/[\t,]/)
var rowValues = rowText.split(/[\t,;]/)

values.push(rowValues)
}
Expand Down

0 comments on commit e44a7ff

Please sign in to comment.