1.0.4 • Published 3 years ago

timezone-cast v1.0.4

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

timezone-cast

This package allows to cast from TZ windows timezone to TZ unix timezone

Example

const casttz = require('timezone-cast');

console.log(casttz.toUnix('BG'));
//Europe/London
console.log(casttz.toUnix('Europe/London'));
//Europe/London
console.log(casttz.toUnix('GMT Standard Time'));
//Europe/London

console.log(casttz.toWindows('BG'));  
//GMT Standard Time
console.log(casttz.toWindows('Europe/London'));
//GMT Standard Time
console.log(casttz.toWindows('GMT Standard Time'));
//GMT Standard Time