We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef21e2b commit 9e9e4bcCopy full SHA for 9e9e4bc
bits/40_harb.js
@@ -926,6 +926,7 @@ var PRN = (function() {
926
927
function prn_to_sheet_str(str/*:string*/, opts)/*:Worksheet*/ {
928
if(!(opts && opts.PRN)) return dsv_to_sheet_str(str, opts);
929
+ if(opts.FS) return dsv_to_sheet_str(str, opts);
930
if(str.slice(0,4) == "sep=") return dsv_to_sheet_str(str, opts);
931
if(str.indexOf("\t") >= 0 || str.indexOf(",") >= 0 || str.indexOf(";") >= 0) return dsv_to_sheet_str(str, opts);
932
return aoa_to_sheet(prn_to_aoa_str(str, opts), opts);
0 commit comments