Files
habitica/common/script/ops/update.js

12 lines
210 B
JavaScript

import _ from 'lodash';
// TODO used only in client, move there?
module.exports = function updateUser (user, req = {}) {
_.each(req.body, (val, key) => {
_.set(user, key, val);
});
return user;
};