forked from sheetjs/sheetjs
SheetJS
b93569badf
- clarify usage of Props and Custprops (fixes #274 h/t @michahell) - SYLK from js-harb - DIF from js-harb - HTML empty string bug fix
20 lines
835 B
JavaScript
20 lines
835 B
JavaScript
/* actual implementation in utils, wrappers are for read/write */
|
|
function write_csv_str(wb/*:Workbook*/, o/*:WriteOpts*/) {
|
|
var idx = 0;
|
|
for(var i=0;i<wb.SheetNames.length;++i) if(wb.SheetNames[i] == o.sheet) idx=i;
|
|
if(idx == 0 && !!o.sheet && wb.SheetNames[0] != o.sheet) throw new Error("Sheet not found: " + o.sheet);
|
|
return sheet_to_csv(wb.Sheets[wb.SheetNames[idx]], o);
|
|
}
|
|
|
|
function write_obj_str(factory) {
|
|
return function write_str(wb/*:Workbook*/, o/*:WriteOpts*/) {
|
|
var idx = 0;
|
|
for(var i=0;i<wb.SheetNames.length;++i) if(wb.SheetNames[i] == o.sheet) idx=i;
|
|
if(idx == 0 && !!o.sheet && wb.SheetNames[0] != o.sheet) throw new Error("Sheet not found: " + o.sheet);
|
|
return factory.from_sheet(wb.Sheets[wb.SheetNames[idx]], o);
|
|
};
|
|
}
|
|
|
|
var write_slk_str = write_obj_str(SYLK);
|
|
var write_dif_str = write_obj_str(DIF);
|