(id, reason)
| 2883 | |
| 2884 | /* eslint-disable no-unused-vars */ |
| 2885 | remove(id, reason) { |
| 2886 | delete this.tasks[id]; |
| 2887 | return this.tasks; |
| 2888 | } |
| 2889 | |
| 2890 | update(id, updatedTask) { |
| 2891 | const task = this.tasks[id]; |
no outgoing calls
no test coverage detected