time-zone
v2.0.0
Published
Pretty time zone: `+2` or `-9:30`
Downloads
3,092,368
Maintainers
Readme
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.