forked from sheetjs/sheetjs
SheetJS
ab2ecebac9
- basic support for parsing BIFF2-4 - basic support for writing BIFF2 - cleaned up some bad substr uses for IE6 compatibility - added flow type annotations for xlsx.flow.js - added numerous null guards (fixes #255 h/t @martinheidegger) - README cleanup (fixes #539 h/t @oliversalzburg) - pin jszip to local version (closes #408 h/t @limouri) bower issues: | id | author | comment | |-----:|:------------------|:------------------------------------------| | #254 | @kkirsche | fixes #254 by removing version from json | | #165 | @vincentcialdella | fixes #165 by changing default script | | #180 | @owencraig | fixes #180 by using xlsx.core.min.js | format issues: | id | author | comment | |-----:|:------------------|:------------------------------------------| | #271 | @morstaine | fixes #271 by reworking related parse fns | | #504 | @JanSchuermannPH | fixes #504 detect FullPaths h/t @Mithgol | | #508 | @basma-emad | fixes #508 offending file used `x:` NS |
59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
function parse_wb(data, name/*:string*/, opts)/*:Workbook*/ {
|
|
if(name.substr(name.length-4)===".bin") return parse_wb_bin((data/*:any*/), opts);
|
|
return parse_wb_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_ws(data, name/*:string*/, opts, rels)/*:Worksheet*/ {
|
|
if(name.substr(name.length-4)===".bin") return parse_ws_bin((data/*:any*/), opts, rels);
|
|
return parse_ws_xml((data/*:any*/), opts, rels);
|
|
}
|
|
|
|
function parse_sty(data, name/*:string*/, opts) {
|
|
if(name.substr(name.length-4)===".bin") return parse_sty_bin((data/*:any*/), opts);
|
|
return parse_sty_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_theme(data, name/*:string*/, opts) {
|
|
return parse_theme_xml(data, opts);
|
|
}
|
|
|
|
function parse_sst(data, name/*:string*/, opts)/*:SST*/ {
|
|
if(name.substr(name.length-4)===".bin") return parse_sst_bin((data/*:any*/), opts);
|
|
return parse_sst_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_cmnt(data, name/*:string*/, opts) {
|
|
if(name.substr(name.length-4)===".bin") return parse_comments_bin((data/*:any*/), opts);
|
|
return parse_comments_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function parse_cc(data, name/*:string*/, opts) {
|
|
if(name.substr(name.length-4)===".bin") return parse_cc_bin((data/*:any*/), opts);
|
|
return parse_cc_xml((data/*:any*/), opts);
|
|
}
|
|
|
|
function write_wb(wb, name/*:string*/, opts) {
|
|
return (name.substr(name.length-4)===".bin" ? write_wb_bin : write_wb_xml)(wb, opts);
|
|
}
|
|
|
|
function write_ws(data/*:Worksheet*/, name/*:string*/, opts, wb/*:Workbook*/) {
|
|
return (name.substr(name.length-4)===".bin" ? write_ws_bin : write_ws_xml)(data, opts, wb);
|
|
}
|
|
|
|
function write_sty(data, name/*:string*/, opts) {
|
|
return (name.substr(name.length-4)===".bin" ? write_sty_bin : write_sty_xml)(data, opts);
|
|
}
|
|
|
|
function write_sst(data/*:SST*/, name/*:string*/, opts) {
|
|
return (name.substr(name.length-4)===".bin" ? write_sst_bin : write_sst_xml)(data, opts);
|
|
}
|
|
/*
|
|
function write_cmnt(data, name:string, opts) {
|
|
return (name.substr(name.length-4)===".bin" ? write_comments_bin : write_comments_xml)(data, opts);
|
|
}
|
|
|
|
function write_cc(data, name:string, opts) {
|
|
return (name.substr(name.length-4)===".bin" ? write_cc_bin : write_cc_xml)(data, opts);
|
|
}
|
|
*/
|