(loStore, key)
| 181 | |
| 182 | const lopaStore = new Proxy(loStore, { |
| 183 | get(loStore, key) { |
| 184 | key = String(window.location.origin) + String(window.location.pathname) + key; |
| 185 | return loStore[key]; |
| 186 | }, |
| 187 | set(loStore, key, value) { |
| 188 | key = String(window.location.origin) + String(window.location.pathname) + key; |
| 189 | return loStore[key] = value; |
nothing calls this directly
no outgoing calls
no test coverage detected