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

Function get

packages/effect/src/JsonPatch.ts:180–184  ·  view source on GitHub ↗
(oldValue: Schema.Json, newValue: Schema.Json)

Source from the content-addressed store, hash-verified

178 * @since 4.0.0
179 */
180export function get(oldValue: Schema.Json, newValue: Schema.Json): JsonPatch {
181 const patches: Array<JsonPatchOperation> = []
182 getLoop(oldValue, newValue, "", patches)
183 return patches
184}
185
186function getLoop(
187 oldValue: Schema.Json,

Callers

nothing calls this directly

Calls 1

getLoopFunction · 0.85

Tested by

no test coverage detected