summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/branch.ts
blob: bb7aec9ebec6b9d338771917023734abc36e2552 (plain)
1
2
3
4
5
6
7
export function branch(condition: boolean): boolean {
  if (condition) {
    return true;
  } else {
    return false;
  }
}