mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
17 lines
260 B
JavaScript
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);
|
|
}
|
|
|
|
|