Skip to content

Commit 9e9e4bc

Browse files
author
Louis Jackson-Rees
committed
FS option skip PRN parse [ci skip]
1 parent ef21e2b commit 9e9e4bc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bits/40_harb.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,7 @@ var PRN = (function() {
926926

927927
function prn_to_sheet_str(str/*:string*/, opts)/*:Worksheet*/ {
928928
if(!(opts && opts.PRN)) return dsv_to_sheet_str(str, opts);
929+
if(opts.FS) return dsv_to_sheet_str(str, opts);
929930
if(str.slice(0,4) == "sep=") return dsv_to_sheet_str(str, opts);
930931
if(str.indexOf("\t") >= 0 || str.indexOf(",") >= 0 || str.indexOf(";") >= 0) return dsv_to_sheet_str(str, opts);
931932
return aoa_to_sheet(prn_to_aoa_str(str, opts), opts);

0 commit comments

Comments
 (0)