<!Doctype html>

<html>
	<head>
		<title>@ztimson/utils sandbox</title>
	</head>
	<body>
		<script type="module">
			import {adjustTz, formatDate} from './dist/index.mjs';

			console.log(formatDate(new Date(), 'HH:mm:ss z'));
			console.log(formatDate(adjustTz(new Date(), 0), 'HH:mm:ss z', 'UTC'));
		</script>
	</body>
</html>