(cb?: (err?: any) => void)
| 131 | } |
| 132 | |
| 133 | save(cb?: (err?: any) => void): this { |
| 134 | this.store.set( |
| 135 | this.id, |
| 136 | this.data(), |
| 137 | cb || |
| 138 | function () { |
| 139 | return |
| 140 | } |
| 141 | ) |
| 142 | return this |
| 143 | } |
| 144 | |
| 145 | reload(cb?: (err?: any) => void): this { |
| 146 | this.store.get(this.id, (err, sess) => { |
no test coverage detected