wallet-core/node_modules/time-zone
2017-08-14 05:02:09 +02:00
..
index.js node_modules 2017-08-14 05:02:09 +02:00
license node_modules 2017-08-14 05:02:09 +02:00
package.json node_modules 2017-08-14 05:02:09 +02:00
readme.md node_modules 2017-08-14 05:02:09 +02:00

time-zone Build Status

Pretty time zone: +2 or -9:30

Install

$ npm install --save time-zone

Usage

const timeZone = require('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.

License

MIT © Sindre Sorhus