utils/index.html
ztimson a5d7a35fdc
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
Fixed formatDate
2025-01-08 14:21:14 -05:00

15 lines
235 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('D MMM, YYYY'));
</script>
</body>
</html>