17 lines
364 B
HTML
17 lines
364 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(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));
|
|
</script>
|
|
</body>
|
|
</html>
|