Skip to content

Commit

Permalink
FS option skip PRN parse [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Jackson-Rees committed Nov 9, 2021
1 parent ef21e2b commit 9e9e4bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bits/40_harb.js
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,7 @@ var PRN = (function() {

function prn_to_sheet_str(str/*:string*/, opts)/*:Worksheet*/ {
if(!(opts && opts.PRN)) return dsv_to_sheet_str(str, opts);
if(opts.FS) return dsv_to_sheet_str(str, opts);
if(str.slice(0,4) == "sep=") return dsv_to_sheet_str(str, opts);
if(str.indexOf("\t") >= 0 || str.indexOf(",") >= 0 || str.indexOf(";") >= 0) return dsv_to_sheet_str(str, opts);
return aoa_to_sheet(prn_to_aoa_str(str, opts), opts);
Expand Down

0 comments on commit 9e9e4bc

Please sign in to comment.