File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,16 +101,16 @@ second parameter during creation of document client as follows:
101
101
``` js
102
102
const marshallOptions = {
103
103
// Whether to automatically convert empty strings, blobs, and sets to `null`.
104
- convertEmptyValues: false ; // false, by default.
104
+ convertEmptyValues: false , // false, by default.
105
105
// Whether to remove undefined values while marshalling.
106
- removeUndefinedValues: false ; // false, by default.
106
+ removeUndefinedValues: false , // false, by default.
107
107
// Whether to convert typeof object to map attribute.
108
- convertClassInstanceToMap: false ; // false, by default.
108
+ convertClassInstanceToMap: false , // false, by default.
109
109
};
110
110
111
111
const unmarshallOptions = {
112
112
// Whether to return numbers as a string instead of converting them to native JavaScript numbers.
113
- wrapNumbers: false ; // false, by default.
113
+ wrapNumbers: false , // false, by default.
114
114
};
115
115
116
116
const translateConfig = { marshallOptions, unmarshallOptions };
You can’t perform that action at this time.
0 commit comments