MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / isOptionalArrayOfString

Function isOptionalArrayOfString

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

Source from the content-addressed store, hash-verified

357}
358
359export function isOptionalArrayOfString(input: any): input is string[] | undefined {
360 return input === undefined || isArrayOfString(input);
361}
362
363export function resolveCachePath(input: string | undefined, additionalEnvironment: Record<string, string | string[]>): string {
364 let resolvedPath: string = "";

Callers

nothing calls this directly

Calls 1

isArrayOfStringFunction · 0.85

Tested by

no test coverage detected