utils/index.html
ztimson a1ea8cdf67
All checks were successful
Build / Build NPM Project (push) Successful in 37s
Build / Tag Version (push) Successful in 7s
Build / Publish Documentation (push) Successful in 1m46s
Added filter function to path events
2024-10-23 14:13:47 -04:00

15 lines
271 B
HTML

<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
import {PathEvent} from './dist/index.mjs';
console.log(PathEvent.filter(['storage/inventory:c', 'data:*'], `storage`));
</script>
</body>
</html>