static S formatDate() { ret formatDate(now()); } static S formatDate(long timestamp) { ret timestamp == 0 ? "-" : str(new Date(timestamp)); }