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

Function isNumber

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

Source from the content-addressed store, hash-verified

324}
325
326export function isNumber(input: any): input is number {
327 return typeof input === "number";
328}
329
330export function isBoolean(input: any): input is boolean {
331 return typeof input === "boolean";

Callers 7

getAsStringMethod · 0.90
getAsNumberMethod · 0.90
getAsNumberMethod · 0.90
fetchTimeBudgetMsMethod · 0.90
fetchMaxSnippetCountMethod · 0.90
fetchMaxSnippetLengthMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected