(key, value, options)
| 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 ""; |
nothing calls this directly
no test coverage detected
searching dependent graphs…