(microseconds)
| 733 | export const kSecondsToMillis = 1000; |
| 734 | |
| 735 | function toTimestamp(microseconds) { |
| 736 | return microseconds / kTimestampFactor |
| 737 | } |
| 738 | |
| 739 | function startOf(timestamp, time) { |
| 740 | let result = toTimestamp(timestamp) - time; |
no outgoing calls
no test coverage detected
searching dependent graphs…