(ch rune)
| 10 | ) |
| 11 | |
| 12 | func IsWhiteSpaceLike(ch rune) bool { |
| 13 | return IsWhiteSpaceSingleLine(ch) || IsLineBreak(ch) |
| 14 | } |
| 15 | |
| 16 | func IsWhiteSpaceSingleLine(ch rune) bool { |
| 17 | // Note: nextLine is in the Zs space, and should be considered to be a whitespace. |
no test coverage detected