(key)
| 37 | }); |
| 38 | } |
| 39 | getItem(key) { |
| 40 | return this._s |
| 41 | ? |
| 42 | this.isPromise ? this._s.getItem(key) : Promise.resolve(this._s.getItem(key)) |
| 43 | : |
| 44 | Promise.resolve(); |
| 45 | } |
| 46 | setItem(key, value) { |
| 47 | return this._s |
| 48 | ? |
no outgoing calls
no test coverage detected