MCPcopy Create free account
hub / github.com/chhoumann/quickadd / isDoubleQuote

Function isDoubleQuote

src/utils/valueSyntax.ts:587–589  ·  view source on GitHub ↗
(ch: string | undefined)

Source from the content-addressed store, hash-verified

585const DOUBLE_QUOTE_CHARS = new Set(['"', "“", "”"]);
586
587function isDoubleQuote(ch: string | undefined): boolean {
588 return ch !== undefined && DOUBLE_QUOTE_CHARS.has(ch);
589}
590
591// Horizontal whitespace only (space, tab, NBSP, other Unicode spaces) — NOT
592// line breaks. VALUE tokens never contain newlines (constants.ts VARIABLE_REGEX

Callers 2

splitQuotedCommaListFunction · 0.85
unwrapQuotedValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected