MCPcopy
hub / github.com/vuejs/core / isWhitespace

Function isWhitespace

packages/compiler-core/src/tokenizer.ts:151–159  ·  view source on GitHub ↗
(c: number)

Source from the content-addressed store, hash-verified

149}
150
151export function isWhitespace(c: number): boolean {
152 return (
153 c === CharCodes.Space ||
154 c === CharCodes.NewLine ||
155 c === CharCodes.Tab ||
156 c === CharCodes.FormFeed ||
157 c === CharCodes.CarriageReturn
158 )
159}
160
161function isEndOfTagSection(c: number): boolean {
162 return c === CharCodes.Slash || c === CharCodes.Gt || isWhitespace(c)

Callers 12

oninterpolationFunction · 0.90
condenseFunction · 0.90
isAllWhitespaceFunction · 0.90
isEndOfTagSectionFunction · 0.85
stateInRCDATAMethod · 0.85
stateInClosingTagNameMethod · 0.85
stateBeforeAttrNameMethod · 0.85
stateInSelfClosingTagMethod · 0.85
stateAfterAttrNameMethod · 0.85
stateBeforeAttrValueMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected