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

Function IsHighSurrogate

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

Source from the content-addressed store, hash-verified

287)
288
289func IsHighSurrogate(ch rune) bool {
290 return utf16.IsSurrogate(ch) && ch < SurrogateLowStart
291}
292
293func IsLowSurrogate(ch rune) bool {
294 return utf16.IsSurrogate(ch) && ch >= SurrogateLowStart

Callers 2

scanEscapeSequenceMethod · 0.92
CombineSurrogatePairsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected