(timestamp, time)
| 737 | } |
| 738 | |
| 739 | function startOf(timestamp, time) { |
| 740 | let result = toTimestamp(timestamp) - time; |
| 741 | if (result < 0) throw "start timestamp cannot be negative"; |
| 742 | return result; |
| 743 | } |
| 744 | |
| 745 | |
| 746 | export class ParseProcessor extends LogReader { |
no test coverage detected
searching dependent graphs…