MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / encodeDeepObject

Function encodeDeepObject

out/cli.cjs:33211–33219  ·  view source on GitHub ↗
(key, value, options)

Source from the content-addressed store, hash-verified

33209 return out.slice(1);
33210 }
33211 function encodeDeepObject(key, value, options) {
33212 if (value == null) {
33213 return "";
33214 }
33215 if (!(0, is_plain_object_js_1.isPlainObject)(value)) {
33216 throw new EncodingError(`Value of parameter '${key}' which uses deepObject encoding must be an object`);
33217 }
33218 return encodeDeepObjectObject(key, value, options);
33219 }
33220 function encodeDeepObjectObject(key, value, options) {
33221 if (value == null) {
33222 return "";

Callers

nothing calls this directly

Calls 1

encodeDeepObjectObjectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…