sheetjs/packages/s/misc/module.html
SheetJS b7c0b0d914 fixed flow typecheck
- update FilterDatabase defined name when writing AutoFilter
- XLML stub cells have blank Data block
- HTML export honor `id` option
- expose `sheet_get_cell`
2019-10-31 23:09:14 -04:00

10 lines
268 B
HTML

<script src="xlsx.mini.min.js"></script>
<script type="module">
import * as S from "../dist/mjs/index.mjs";
function assert(x) { if(!x) throw "assert failed"; }
assert(S != null);
S.set_XLSX(XLSX);
assert(S.get_XLSX() == XLSX);
assert(S.get_XLSX().version);
</script>