(id)
| 108 | |
| 109 | //Remove Transaction by ID |
| 110 | function removeTransaction(id){ |
| 111 | transactions = transactions.filter(transaction => transaction.id !== id); |
| 112 | updateLocalStorage(); |
| 113 | Init(); |
| 114 | } |
| 115 | //last |
| 116 | //update Local Storage Transaction |
| 117 | function updateLocalStorage(){ |
nothing calls this directly
no test coverage detected