diff --git a/packages/smithy-client/src/serde-json.ts b/packages/smithy-client/src/serde-json.ts index bf5768f405a0f..064c1a9404da4 100644 --- a/packages/smithy-client/src/serde-json.ts +++ b/packages/smithy-client/src/serde-json.ts @@ -14,7 +14,7 @@ export const _json = (obj: any): any => { if (Array.isArray(obj)) { return obj.filter((_: any) => _ != null); } - if (typeof obj === 'object') { + if (typeof obj === "object") { const target: any = {}; for (const key of Object.keys(obj)) { if (obj[key] == null) { @@ -25,4 +25,4 @@ export const _json = (obj: any): any => { return target; } return obj; -} +};