(args)
| 29845 | return regex; |
| 29846 | } |
| 29847 | function timeRegex(args) { |
| 29848 | return new RegExp(`^${timeRegexSource(args)}$`); |
| 29849 | } |
| 29850 | function datetimeRegex(args) { |
| 29851 | let regex = `${dateRegexSource}T${timeRegexSource(args)}`; |
| 29852 | const opts = []; |
no test coverage detected
searching dependent graphs…