Skip to content

Commit 3a4d2cb

Browse files
author
awstools
committed
feat(smithy-client): update client defaults provider
1 parent 8798a6e commit 3a4d2cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/smithy-client/src/serde-json.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const _json = (obj: any): any => {
1414
if (Array.isArray(obj)) {
1515
return obj.filter((_: any) => _ != null);
1616
}
17-
if (typeof obj === 'object') {
17+
if (typeof obj === "object") {
1818
const target: any = {};
1919
for (const key of Object.keys(obj)) {
2020
if (obj[key] == null) {
@@ -25,4 +25,4 @@ export const _json = (obj: any): any => {
2525
return target;
2626
}
2727
return obj;
28-
}
28+
};

0 commit comments

Comments
 (0)