I need the next flow:
var a = new Date(1337324400000, 'Europe/Amsterdam'); //+2h
console.log(a); // for example 12:00 Mon ...
a.setTimeZone('Europe/Kiev'); //+3h
console.log(a); // 13:00 Mon ...
Is there such possibility in nodejs utils api ?
|
I need the next flow:
Is there such possibility in nodejs utils api ? |
|||
|
|
|
You can use node-time, as follows:
|
|||
|
|
UPDATE: there is another one now:) https://github.com/mde/timezone-js
no there is not But you can use moment.js to make it easier http://momentjs.com/docs/ You still need to know each offset so you will need mapping like |
|||||||||||
|