consultant
Version:
Gathers structural and validateable input from command line or interative menu
12 lines • 319 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
;
async function getRuleChildren(rule) {
if (rule.getChildren !== undefined) {
return await rule.getChildren(rule.id);
}
return rule.children;
}
exports.getRuleChildren = getRuleChildren;
;
//# sourceMappingURL=Rule.js.map