Fixed path events casing issue
All checks were successful
Build / Build NPM Project (push) Successful in 46s
Build / Tag Version (push) Successful in 13s
Build / Publish Documentation (push) Successful in 52s

This commit is contained in:
2025-06-19 18:44:20 -04:00
parent e3bbd13ed8
commit 4ed23e1502
4 changed files with 38 additions and 16 deletions

View File

@ -1,19 +1,9 @@
<html>
<body>
<script type="module">
import {Cache, Database} from './dist/index.mjs';
import {PES} from './dist/index.mjs';
const db = new Database('test');
db.connection.then(() => {
console.log(db.tables);
});
const table = window.table = await db.createTable('test2');
table.add({ name: 'Alice', age: 30 });
table.add({ name: 'Bob', age: 24 });
table.add({ name: 'Carol', age: 30 });
console.log(db.tables);
console.log(PES`storage${'Test/Test'}:d`);
</script>
</body>
</html>