forked from sheetjs/sheetjs
SheetJS
807eac273b
- systemjs browser example - more precise file type resolution - small corner cases from test corpus - removed neq in tests (fixes #735 h/t @TeamworkGuy2) - package.json devDependencies versions (fixes #740 h/t @the-spyke)
19 lines
307 B
HTML
19 lines
307 B
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.20.16/system.js"></script>
|
|
<script>
|
|
SystemJS.config({
|
|
meta: {
|
|
'xlsx': {
|
|
exports: 'XLSX'
|
|
}
|
|
},
|
|
map: {
|
|
'xlsx': 'xlsx.full.min.js',
|
|
'fs': '',
|
|
'crypto': '',
|
|
'stream': ''
|
|
}
|
|
});
|
|
SystemJS.import('main.js');
|
|
</script>
|
|
|