Files
bodyshop/client/src/utils/undefinedtonull.js

7 lines
156 B
JavaScript

export default function UndefinedToNull(obj) {
Object.keys(obj).forEach((key) => {
if (obj[key] === undefined) obj[key] = null;
});
return obj;
}