(input: string)
| 103 | } |
| 104 | |
| 105 | function parseNaturalDate(input: string) { |
| 106 | input = input.toLowerCase(); |
| 107 | input = input.replace(/[,]/g, ''); |
| 108 | return parse(input, NaturalDateParser()); |
| 109 | } |
| 110 | |
| 111 | test.each([ |
| 112 | ['Monday', { weekdays: new Set(['monday']) }], |
no test coverage detected