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