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