1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2018-07-27 18:18:48 +02:00

17 lines
260 B
JavaScript

/*
* Some datetime parsing helper functions
*/
import moment from 'moment'
window.moment = moment;
export function parseServerTime(serverTime) {
const fmt = "YYYY-MM-DDTHH:mm:ss.SSSSSSSSZ"; // S was 4 byte short
return moment(serverTime, fmt);
}