utils/index.html

17 lines
364 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">
2024-11-20 10:56:51 -05:00
import {formatDate} from './dist/index.mjs';
2024-10-17 10:24:18 -04:00
2024-11-20 10:56:51 -05:00
console.log(formatDate(new Date(), 'HH:mm:ss z', 5));
console.log(formatDate(new Date(), 'HH:mm:ss z', 0));
console.log(formatDate(new Date(), 'HH:mm:ss z', -5));
2024-10-17 10:24:18 -04:00
</script>
</body>
</html>