IW4M-Admin/WebfrontCore/wwwroot/lib/moment-timezone
RaidMax 233aeeb12f added moment for parsing dates in profile timeline
fixed bug of duplicate penalties
fixed showing timeline date for non events
refresh player count on server overview
fix refresh privileged users on map load
fix 1h showing on tempban if manually specified
2018-03-27 19:27:01 -05:00
..
builds added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
data added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
.bower.json added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
bower.json added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
changelog.md added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
composer.json added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
LICENSE added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
moment-timezone-utils.js added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
moment-timezone.js added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00
README.md added moment for parsing dates in profile timeline 2018-03-27 19:27:01 -05:00

Moment Timezone

Join the chat at https://gitter.im/moment/moment-timezone

NPM version NPM downloads MIT License Build Status

IANA Time Zone Database + Moment.js.

var june = moment("2014-06-01T12:00:00Z");
june.tz('America/Los_Angeles').format('ha z'); // 5am PDT
june.tz('America/New_York').format('ha z');    // 8am EDT
june.tz('Asia/Tokyo').format('ha z');          // 9pm JST
june.tz('Australia/Sydney').format('ha z');    // 10pm EST

var dec = moment("2014-12-01T12:00:00Z");
dec.tz('America/Los_Angeles').format('ha z');  // 4am PST
dec.tz('America/New_York').format('ha z');     // 7am EST
dec.tz('Asia/Tokyo').format('ha z');           // 9pm JST
dec.tz('Australia/Sydney').format('ha z');     // 11pm EST

Contribute code or compile time zone data

Read the changelog