Optimizations
Some checks failed
Build / Build NPM Project (push) Failing after 29s
Build / Publish Documentation (push) Has been skipped
Build / Tag Version (push) Has been skipped

This commit is contained in:
2025-07-07 14:29:49 -04:00
parent 387e6b2512
commit 59bce9d28d
6 changed files with 251 additions and 69 deletions

View File

@ -1,9 +1,11 @@
<html>
<body>
<script type="module">
import {PES} from './dist/index.mjs';
import {PathEventEmitter} from './dist/index.mjs';
console.log(PES`storage${'Test/Test'}:d`);
const emitter = new PathEventEmitter('data');
emitter.on('*', console.log);
emitter.emit('data/asd', {});
</script>
</body>
</html>