react-native-navigation-drilldown
Version:
Drilldown screens to use with react-navigation
7 lines • 311 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function isChildOf(child, parent) {
return !!parent.children && parent.children.some(function (item) { return item.id === child.id || isChildOf(child, item); });
}
exports.default = isChildOf;
//# sourceMappingURL=isChildOf.js.map