Fixed formatDate
All checks were successful
Build / Build NPM Project (push) Successful in 42s
Build / Tag Version (push) Successful in 9s
Build / Publish Documentation (push) Successful in 38s

This commit is contained in:
2025-01-08 14:21:14 -05:00
parent cb117273a7
commit a5d7a35fdc
3 changed files with 44 additions and 79 deletions

View File

@ -6,11 +6,9 @@
</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' ];
import {formatDate} from './dist/index.mjs';
console.log(PathEvent.filter(perms, perm));
console.log(formatDate('D MMM, YYYY'));
</script>
</body>
</html>