We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
null
1 parent cc5557b commit efceb42Copy full SHA for efceb42
lib/dao.js
@@ -179,10 +179,12 @@ DataAccessObject._forDB = function(data) {
179
const res = {};
180
for (const propName in data) {
181
const type = this.getPropertyType(propName);
182
- if (type === 'JSON' || type === 'Any' || type === 'Object' || data[propName] instanceof Array) {
183
- res[propName] = JSON.stringify(data[propName]);
+ const value = data[propName];
+ if (value !== null && (type === 'JSON' || type === 'Any' ||
184
+ type === 'Object' || value instanceof Array)) {
185
+ res[propName] = JSON.stringify(value);
186
} else {
- res[propName] = data[propName];
187
+ res[propName] = value;
188
}
189
190
return res;
0 commit comments