17 lines
379 B
HTML
17 lines
379 B
HTML
<!Doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>@ztimson/utils sandbox</title>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import {PES, PathEvent} from './dist/index.mjs';
|
|
const perm = PES`storage/test/john-flag.png:r`;
|
|
const perms = [ 'logs/Momentum:c', 'storage/test:r', 'data/Repos:r', 'email:c' ];
|
|
|
|
console.log(PathEvent.filter(perms, perm));
|
|
</script>
|
|
</body>
|
|
</html>
|