utils/index.html

15 lines
271 B
HTML
Raw Normal View History

2024-10-17 10:24:18 -04:00
<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
2024-10-23 14:13:47 -04:00
import {PathEvent} from './dist/index.mjs';
2024-10-17 10:24:18 -04:00
2024-10-23 21:39:42 -04:00
console.log(PathEvent.has(['data/Inventory:n', 'logs:c'], `logs/client:n`));
2024-10-17 10:24:18 -04:00
</script>
</body>
</html>