MCPcopy Create free account
hub / github.com/microsoft/typescript-go / IsWhiteSpaceLike

Function IsWhiteSpaceLike

internal/stringutil/util.go:12–14  ·  view source on GitHub ↗
(ch rune)

Source from the content-addressed store, hash-verified

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

Callers 15

skipWhitespaceFunction · 0.92
scanNonWhitespaceFunction · 0.92
HasTrailingWhitespaceMethod · 0.92
HasTrailingWhitespaceMethod · 0.92
HasTrailingWhitespaceMethod · 0.92
DedentFunction · 0.92
ReScanSlashTokenMethod · 0.92
ScanJsxTokenExMethod · 0.92
ScanJsxAttributeValueMethod · 0.92

Calls 2

IsWhiteSpaceSingleLineFunction · 0.85
IsLineBreakFunction · 0.85

Tested by

no test coverage detected