MCPcopy Index your code
hub / github.com/nodejs/node / isStringDoubleQuoted

Function isStringDoubleQuoted

test/fixtures/snapshot/typescript.js:16403–16405  ·  view source on GitHub ↗
(str, sourceFile)

Source from the content-addressed store, hash-verified

16401 }
16402 ts.isSingleOrDoubleQuote = isSingleOrDoubleQuote;
16403 function isStringDoubleQuoted(str, sourceFile) {
16404 return getSourceTextOfNodeFromSourceFile(sourceFile, str).charCodeAt(0) === 34 /* CharacterCodes.doubleQuote */;
16405 }
16406 ts.isStringDoubleQuoted = isStringDoubleQuoted;
16407 function isAssignmentDeclaration(decl) {
16408 return ts.isBinaryExpression(decl) || isAccessExpression(decl) || ts.isIdentifier(decl) || ts.isCallExpression(decl);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…