forked from sheetjs/sheetjs
		
	- XLSB/XLSM workbook/worksheet code names for VBA - XLSX/XLSB write hyperlinks - updated CFB to 0.11.1 Fixes: - fixes #615 h/t @johnothetree (XLSM CodeName) - fixes #93 h/t @SheetJSDev (Write Hyperlinks) - fixes #156 h/t @MayaGi (XLSX Write Hyperlinks) - fixes #344 h/t @slonoed (XLSX Write Hyperlinks)
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function parse_wb(data, name/*:string*/, opts)/*:WorkbookFile*/ {
 | 
						|
	if(name.slice(-4)===".bin") return parse_wb_bin((data/*:any*/), opts);
 | 
						|
	return parse_wb_xml((data/*:any*/), opts);
 | 
						|
}
 | 
						|
 | 
						|
function parse_ws(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
 | 
						|
	if(name.slice(-4)===".bin") return parse_ws_bin((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
	return parse_ws_xml((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
}
 | 
						|
 | 
						|
function parse_cs(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
 | 
						|
	if(name.slice(-4)===".bin") return parse_cs_bin((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
	return parse_cs_xml((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
}
 | 
						|
 | 
						|
function parse_ms(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
 | 
						|
	if(name.slice(-4)===".bin") return parse_ms_bin((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
	return parse_ms_xml((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
}
 | 
						|
 | 
						|
function parse_ds(data, name/*:string*/, opts, rels, wb, themes, styles)/*:Worksheet*/ {
 | 
						|
	if(name.slice(-4)===".bin") return parse_ds_bin((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
	return parse_ds_xml((data/*:any*/), opts, rels, wb, themes, styles);
 | 
						|
}
 | 
						|
 | 
						|
function parse_sty(data, name/*:string*/, themes, opts) {
 | 
						|
	if(name.slice(-4)===".bin") return parse_sty_bin((data/*:any*/), themes, opts);
 | 
						|
	return parse_sty_xml((data/*:any*/), themes, opts);
 | 
						|
}
 | 
						|
 | 
						|
function parse_theme(data/*:string*/, name/*:string*/, opts) {
 | 
						|
	return parse_theme_xml(data, opts);
 | 
						|
}
 | 
						|
 | 
						|
function parse_sst(data, name/*:string*/, opts)/*:SST*/ {
 | 
						|
	if(name.slice(-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.slice(-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.slice(-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.slice(-4)===".bin" ? write_wb_bin : write_wb_xml)(wb, opts);
 | 
						|
}
 | 
						|
 | 
						|
function write_ws(data/*:Worksheet*/, name/*:string*/, opts, wb/*:Workbook*/, rels) {
 | 
						|
	return (name.slice(-4)===".bin" ? write_ws_bin : write_ws_xml)(data, opts, wb, rels);
 | 
						|
}
 | 
						|
 | 
						|
function write_sty(data, name/*:string*/, opts) {
 | 
						|
	return (name.slice(-4)===".bin" ? write_sty_bin : write_sty_xml)(data, opts);
 | 
						|
}
 | 
						|
 | 
						|
function write_sst(data/*:SST*/, name/*:string*/, opts) {
 | 
						|
	return (name.slice(-4)===".bin" ? write_sst_bin : write_sst_xml)(data, opts);
 | 
						|
}
 | 
						|
/*
 | 
						|
function write_cmnt(data, name:string, opts) {
 | 
						|
	return (name.slice(-4)===".bin" ? write_comments_bin : write_comments_xml)(data, opts);
 | 
						|
}
 | 
						|
 | 
						|
function write_cc(data, name:string, opts) {
 | 
						|
	return (name.slice(-4)===".bin" ? write_cc_bin : write_cc_xml)(data, opts);
 | 
						|
}
 | 
						|
*/
 |