()
| 45 | } |
| 46 | |
| 47 | export function popInvalidCommand(){ |
| 48 | let record = JSON.parse(localStorage.getItem("history")) || []; |
| 49 | record.pop(); |
| 50 | localStorage.setItem("history", JSON.stringify(record)); |
| 51 | } |
nothing calls this directly
no outgoing calls
no test coverage detected