master
Raw Download raw file
1function (date) {
2    // Convert hackmud timestr to date object
3    var iso = date.replace(/(\d{2})(\d{2})(\d{2})\.(\d{2})(\d{2})/, "20$1-$2-$3T$4:$5-04:00");
4    return new Date(iso);
5}