utils/index.html

15 lines
235 B
HTML
Raw Permalink Normal View History

2024-10-17 10:24:18 -04:00
<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
2025-01-08 14:21:14 -05:00
import {formatDate} from './dist/index.mjs';
2024-10-17 10:24:18 -04:00
2025-01-08 14:21:14 -05:00
console.log(formatDate('D MMM, YYYY'));
2024-10-17 10:24:18 -04:00
</script>
</body>
</html>