2.0.0 • Published 3 years ago

time-zone v2.0.0

Weekly downloads
497,537
License
MIT
Repository
github
Last release
3 years ago

time-zone

Pretty time zone: +2 or -9:30

Install

$ npm install time-zone

Usage

import timeZone from 'time-zone';

// Current time zone (in Norway)
timeZone();
//=> '+2'

// Time zone in February (in Norway)
timeZone(new Date(2016, 1, 1));
//=> '+1'

// Current time zone (in French Polynesia)
timeZone();
//=> '-9:30'

API

timeZone(date?)

date

Type: Date\ Default: new Date()

Custom date.