* Fetch session by the given session ID. * @param id Session ID * @param cb Callback
(id: string, cb: (err?: any, session?: any) => void)
| 633 | * @param cb Callback |
| 634 | */ |
| 635 | get(id: string, cb: (err?: any, session?: any) => void) { |
| 636 | const session = this.getSession(id) |
| 637 | setImmediate(() => cb(null, session)) |
| 638 | } |
| 639 | |
| 640 | /** |
| 641 | * Commit the given session associated with the given ID to the store. |
nothing calls this directly
no test coverage detected