MCPcopy Create free account
hub / github.com/microsoft/vscode-cpptools / isString

Function isString

Extension/src/common.ts:322–324  ·  view source on GitHub ↗
(input: any)

Source from the content-addressed store, hash-verified

320}
321
322export function isString(input: any): input is string {
323 return typeof input === "string";
324}
325
326export function isNumber(input: any): input is number {
327 return typeof input === "number";

Callers 15

expandAllStringsFunction · 0.90
canFindClFunction · 0.90
getAsStringMethod · 0.90
isValidEnumMethod · 0.90
isCommentPatternMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected