utils/index.html
ztimson a08b0c4eea
All checks were successful
Build / Build NPM Project (push) Successful in 40s
Build / Tag Version (push) Successful in 8s
Build / Publish Documentation (push) Successful in 34s
Fixed database init loop
2025-05-27 15:42:00 -04:00

11 lines
202 B
HTML

<html>
<body>
<script type="module">
import {Cache, Database} from './dist/index.mjs';
const db = new Database('test', [123]);
window['table'] = db.table(123);
</script>
</body>
</html>