FormatTimeMillis returns a human readable version of the input time (in milliseconds).
(ms int64)
| 31 | |
| 32 | // FormatTimeMillis returns a human readable version of the input time (in milliseconds). |
| 33 | func FormatTimeMillis(ms int64) string { |
| 34 | return TimeFromMillis(ms).String() |
| 35 | } |
| 36 | |
| 37 | // FormatTimeModel returns a human readable version of the input time. |
| 38 | func FormatTimeModel(t model.Time) string { |
no test coverage detected