export function branch(condition: boolean): boolean { if (condition) { return true; } else { return false; } }