0.0.3 • Published 3 years ago

aussie-date-formatter v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

aussie-date-formatter

A typescript/javascript date formatter for Australians that works how an Aussie would expect.

Works with default node setup (usually only the en-US locale is available).

Test

yarn test

Usage

import { DateFormatter } from "aussie-date-formatter"

const date = new Date('2021-08-03T14:15:16Z')
const formatter = new DateFormatter(date, 'Australia/Sydney')

formatter.toDateTimeTz()
// 4/2/2021 1:15:16 AM AEDT

formatter.toIsoDateTime()
// 2021-02-04T01:15:16+11:00

formatter.toDate()
// 4/2/2021

formatter.toIsoDate()
// 2021-04-02

formatter.toTime()
// 1:15:16 AM

formatter.toTime('2-digit')
// 01:15:16 AM

formatter.toTime('24')
// 01:15:16
const df = require('aussie-date-formatter')
const formatter = new df.DateFormatter(new Date(), 'Australia/Perth')

Caveats

It should mostly work with other time zones too but won't work correctly with US time zones because there is no way of obtaining the time zone offset (AFIAK).

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago