(id?: string, session?: Session)
| 357 | |
| 358 | // determine if session should be touched |
| 359 | const shouldTouch = (id?: string, session?: Session) => |
| 360 | typeof id !== 'string' ? false : cookieId === id && !shouldSave(id, session) |
| 361 | |
| 362 | // TODO: Get rid of onHeaders dep |
| 363 | onHeaders(res, () => { |
no test coverage detected