timeString returns modTime as the number of milliseconds elapsed since January 1, 1970 UTC as a decimal string.
(modTime time.Time)
| 1879 | // timeString returns modTime as the number of milliseconds |
| 1880 | // elapsed since January 1, 1970 UTC as a decimal string. |
| 1881 | func timeString(modTime time.Time) string { |
| 1882 | return strconv.FormatInt(modTime.UnixNano()/1e6, 10) |
| 1883 | } |
| 1884 | |
| 1885 | // parseTimeStringHelper converts a decimal string number of milliseconds |
| 1886 | // elapsed since January 1, 1970 UTC into a time.Time |
no outgoing calls
searching dependent graphs…