File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 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:
101101``` js
102102const marshallOptions = {
103103 // Whether to automatically convert empty strings, blobs, and sets to `null`.
104- convertEmptyValues: false ; // false, by default.
104+ convertEmptyValues: false , // false, by default.
105105 // Whether to remove undefined values while marshalling.
106- removeUndefinedValues: false ; // false, by default.
106+ removeUndefinedValues: false , // false, by default.
107107 // Whether to convert typeof object to map attribute.
108- convertClassInstanceToMap: false ; // false, by default.
108+ convertClassInstanceToMap: false , // false, by default.
109109};
110110
111111const unmarshallOptions = {
112112 // 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.
114114};
115115
116116const translateConfig = { marshallOptions, unmarshallOptions };
You can’t perform that action at this time.
0 commit comments