Files
habitica/common/script/fns/dotGet.js
2016-04-08 11:56:51 +02:00

8 lines
142 B
JavaScript

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