(cond: boolean, trueCase: string, falseCase: string = "")
| 723 | } |
| 724 | |
| 725 | public when(cond: boolean, trueCase: string, falseCase: string = "") { |
| 726 | return cond ? trueCase : falseCase; |
| 727 | } |
| 728 | |
| 729 | public incremental() { |
| 730 | return !!this.isIncremental; |