(c: string)
| 102 | } |
| 103 | |
| 104 | function isDigit(c: string): boolean { |
| 105 | return '0' <= c && c <= '9'; |
| 106 | } |
| 107 | |
| 108 | function isBreak(c: string): boolean { |
| 109 | // TODO(@jart): Remove underscore when people stop using it like a slash. |
no outgoing calls
no test coverage detected
searching dependent graphs…