forked from sheetjs/sheetjs
		
	- dist scripts properly export library - XLS/XLSB formulae quote sheet names containing spaces - skipHidden ported to streaming CSV write - updated codepage to 1.11.0 - flow and TS updates - webpack demo example using dist scripts - requirejs demo
		
			
				
	
	
	
		
			346 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			346 B
		
	
	
	
	
	
	
	
RequireJS
The minified dist files trip up the RequireJS mechanism.  To bypass, the scripts
automatically expose an XLSX variable that can be used if the require callback
argument is _XLSX rather than XLSX:
require(["xlsx.full.min"], function(_XLSX) { /* ... */ });
This demo uses the r.js optimizer to build a source file.