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

Method object

Extension/src/Utility/System/guards.ts:24–26  ·  view source on GitHub ↗
(node: any)

Source from the content-addressed store, hash-verified

22 }
23
24 static object(node: any): node is Record<string, any> {
25 return typeof node === 'object' && node !== null && !is.array(node);
26 }
27
28 static nullish(value: any): value is null | undefined {
29 return value === null || value === undefined;

Callers

nothing calls this directly

Calls 1

arrayMethod · 0.80

Tested by

no test coverage detected