MCPcopy Create free account
hub / github.com/Effect-TS/effect / isJsonObject

Function isJsonObject

packages/effect/src/JsonPatch.ts:292–294  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

290}
291
292function isJsonObject(value: unknown): value is Schema.JsonObject {
293 return typeof value === "object" && value !== null && !Array.isArray(value)
294}
295
296/**
297 * Tokenize a JSON Pointer into unescaped reference tokens.

Callers 3

getLoopFunction · 0.70
applyOperationFunction · 0.70
resolveParentFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected