()
| 75 | } |
| 76 | |
| 77 | function* TimespanParser() { |
| 78 | yield ['from', 'at', '']; |
| 79 | yield whitespaceOptional; |
| 80 | const startTime = yield TimeOfDayParser; |
| 81 | yield whitespaceOptional; |
| 82 | const endTime = yield optional(TimespanSuffixParser); |
| 83 | return { startTime, endTime }; |
| 84 | } |
| 85 | |
| 86 | interface Result { |
| 87 | weekdays: Set<Weekday>; |
nothing calls this directly
no test coverage detected