(completed: boolean)
| 37 | } |
| 38 | |
| 39 | private getWithCompleted(completed: boolean) { |
| 40 | return this.todos.filter((todo: Todo) => todo.completed === completed); |
| 41 | } |
| 42 | |
| 43 | allCompleted() { |
| 44 | return this.todos.length === this.getCompleted().length; |
no outgoing calls
no test coverage detected