mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
import _ from 'lodash';
|
|
|
|
// TODO remove completely, use _.get
|
|
|
|
module.exports = function dotGet (user, path) {
|
|
return _.get(user, path);
|
|
};
|