12 lines
239 B
HTML
12 lines
239 B
HTML
<html>
|
|
<body>
|
|
<script type="module">
|
|
import {PathEventEmitter} from './dist/index.mjs';
|
|
|
|
const emitter = new PathEventEmitter('data');
|
|
emitter.on('*', console.log);
|
|
emitter.emit('data/asd', {});
|
|
</script>
|
|
</body>
|
|
</html>
|