utils/index.html
ztimson fe9fdb9384
All checks were successful
Build / Build NPM Project (push) Successful in 38s
Build / Tag Version (push) Successful in 8s
Build / Publish Documentation (push) Successful in 40s
Fixed blackorwhite invalid argument crash
2025-02-03 14:20:18 -05:00

15 lines
234 B
HTML

<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
import {formatDate} from './dist/index.mjs';
console.log(formatDate('YYYY-01-01'));
</script>
</body>
</html>