forked from sheetjs/sheetjs
10 lines
268 B
HTML
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>
|