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

Function isObject

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

Source from the content-addressed store, hash-verified

332}
333
334export function isObject(input: any): boolean {
335 return input !== null && typeof input === "object" && !isArray(input);
336}
337
338export function isArray(input: any): input is any[] {
339 return Array.isArray(input);

Callers 2

isCommentPatternMethod · 0.90
isValidMappingFunction · 0.85

Calls 1

isArrayFunction · 0.85

Tested by

no test coverage detected