Files
habitica/common/script/fns/dotGet.js
2016-04-12 19:30:39 +02:00

8 lines
163 B
JavaScript

import _ from 'lodash';
// TODO remove completely, use _.get, only used in client
module.exports = function dotGet (user, path) {
return _.get(user, path);
};