habitica/website/common/script/content/gear/gear-helper.js

8 lines
158 B
JavaScript
Raw Normal View History

import { isBoolean } from 'lodash';
2015-11-16 23:29:13 +00:00
export function ownsItem (item) {
return (user) => {
return item && isBoolean(user.items.gear.owned[item]);
2015-11-16 23:29:13 +00:00
};
}