(key)
| 22 | } |
| 23 | |
| 24 | function readStorage(key) { |
| 25 | if (storage) { |
| 26 | return storage.getItem(storagePrefix + key); |
| 27 | } else { |
| 28 | return null; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | function writeStorage(key, value) { |
| 33 | if (storage) { |
no outgoing calls
no test coverage detected