Added a check for a raw string in .csv files

This commit is contained in:
TMiller00 2017-07-09 01:15:28 -04:00
parent 43795a43bb
commit 859691b87b

View File

@ -527,7 +527,8 @@ var PRN = (function() {
function finish_cell() {
var s = str.slice(start, end);
var cell = ({}/*:any*/);
if(s.charCodeAt(0) == 0x3D) { cell.t = 'n'; cell.f = s.substr(1); }
if(o.raw) { cell.t = 's'; cell.v = s; }
else if(s.charCodeAt(0) == 0x3D) { cell.t = 'n'; cell.f = s.substr(1); }
else if(s == "TRUE") { cell.t = 'b'; cell.v = true; }
else if(s == "FALSE") { cell.t = 'b'; cell.v = false; }
else if(!isNaN(v = +s)) { cell.t = 'n'; cell.w = s; cell.v = v; }
@ -621,4 +622,3 @@ function read_wb_ID(d, opts) {
return PRN.to_workbook(d, opts);
}
}