12 lines
243 B
HTML
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>
|