r"""Zs (unicode class) || [\t\f\v\r\n]
(code: int)
| 185 | |
| 186 | |
| 187 | def isWhiteSpace(code: int) -> bool: |
| 188 | r"""Zs (unicode class) || [\t\f\v\r\n]""" |
| 189 | if code >= 0x2000 and code <= 0x200A: |
| 190 | return True |
| 191 | return code in MD_WHITESPACE |
| 192 | |
| 193 | |
| 194 | # ////////////////////////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected
searching dependent graphs…