Check if character is a whitespace.
(ch: str | None)
| 165 | |
| 166 | |
| 167 | def isStrSpace(ch: str | None) -> bool: |
| 168 | """Check if character is a whitespace.""" |
| 169 | return ch in ("\t", " ") |
| 170 | |
| 171 | |
| 172 | MD_WHITESPACE = { |
no outgoing calls
no test coverage detected
searching dependent graphs…