Fixed database init loop
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

This commit is contained in:
2025-05-27 15:42:00 -04:00
parent 1b03ae875b
commit a08b0c4eea
3 changed files with 7 additions and 3 deletions

View File

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