react-native-navigation-drilldown
Version:
Drilldown screens to use with react-navigation
9 lines • 351 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function includesItem(item, selection) {
return Array.isArray(selection) ?
!!selection.find(function (i) { return i.id === item.id; }) :
(!!selection && selection.id === item.id);
}
exports.default = includesItem;
//# sourceMappingURL=includesItem.js.map