forked from sheetjs/sheetjs
		
	- cellHTML controls HTML generation - cellFormula controls formula output - sheetStubs now defaults to false - cleaned up unnecessary CSV quotes (fixed #45) - updated test_files to 20140211 - updated SSF to 0.5.7 - removed unused main function - removed some dead code
		
			
				
	
	
		
			16 lines
		
	
	
		
			521 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			521 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function parse_wb(data, name, opts) {
 | |
| 	return name.substr(-4)===".bin" ? parse_wb_bin(data, opts) : parse_wb_xml(data, opts);
 | |
| }
 | |
| 
 | |
| function parse_ws(data, name, opts) {
 | |
| 	return name.substr(-4)===".bin" ? parse_ws_bin(data, opts) : parse_ws_xml(data, opts);
 | |
| }
 | |
| 
 | |
| function parse_sty(data, name, opts) {
 | |
| 	return name.substr(-4)===".bin" ? parse_sty_bin(data, opts) : parse_sty_xml(data, opts);
 | |
| }
 | |
| 
 | |
| function parse_sst(data, name, opts) {
 | |
| 	return name.substr(-4)===".bin" ? parse_sst_bin(data, opts) : parse_sst_xml(data, opts);
 | |
| }
 |