mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-10 20:47:48 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.134.1
This commit is contained in:
@@ -201,7 +201,12 @@ export function encodeDeepObject(
|
||||
value: unknown,
|
||||
options?: { charEncoding?: "percent" | "none" },
|
||||
) {
|
||||
if (value == null) {
|
||||
return "";
|
||||
}
|
||||
|
||||
let out = "";
|
||||
|
||||
const encodeString = (v: string) => {
|
||||
return options?.charEncoding === "percent" ? encodeURIComponent(v) : v;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user