(key)
| 270 | localStorage.setItem(model + "_" + option + "_" + result, origin) |
| 271 | }, |
| 272 | getTransCache(key) { |
| 273 | let model = util.getValue('model'); |
| 274 | let option = optionsManager.getOption(model); |
| 275 | return localStorage.getItem(model + "_" + option + "_" + key) |
| 276 | }, |
| 277 | removeSession(key) { |
| 278 | localStorage.removeItem(util.getValue('model') + "_" + key) |
| 279 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected