(name: string, cookie: Cookie)
| 22 | {}; |
| 23 | } |
| 24 | add(name: string, cookie: Cookie) { |
| 25 | this.store = { |
| 26 | ...this.store, |
| 27 | [name]: cookie, |
| 28 | }; |
| 29 | } |
| 30 | map(callbackfn: (value: Cookie) => unknown) { |
| 31 | return Object.values(this.store).map(callbackfn); |
| 32 | } |
no outgoing calls
no test coverage detected