MCPcopy Index your code
hub / github.com/angular/angular-cli / isJsonObject

Function isJsonObject

packages/angular/cli/src/utilities/config.ts:17–19  ·  view source on GitHub ↗
(value: json.JsonValue | undefined)

Source from the content-addressed store, hash-verified

15import { JSONFile, readAndParseJson } from './json-file';
16
17function isJsonObject(value: json.JsonValue | undefined): value is json.JsonObject {
18 return value !== undefined && json.isJsonObject(value);
19}
20
21function createWorkspaceHost(): workspaces.WorkspaceHost {
22 return {

Callers 4

validateWorkspaceFunction · 0.70
getPackageManagerFunction · 0.70
mergeOptionsFunction · 0.70
getWarningFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected