Files
utils/index.html
ztimson 31998c01d6
Some checks failed
Build / Build NPM Project (push) Successful in 1m12s
Build / Tag Version (push) Successful in 16s
Build / Publish Documentation (push) Failing after 16s
formatDate fixed
2025-08-01 11:06:07 -04:00

12 lines
243 B
HTML

<html>
<body>
<script type="module">
import {formatDate} from './dist/index.mjs';
const dt = new Date('2021-03-03T09:00:00Z');
const result = formatDate('Do MMMM dddd', dt, 0);
console.log(result);
</script>
</body>
</html>