(this: Session, callback: (args?: any) => void, ...args: any[])
| 488 | const _save = sess.save |
| 489 | |
| 490 | function reload(this: Session, callback: (args?: any) => void, ...args: any[]) { |
| 491 | _reload.call(this, function () { |
| 492 | wrapmethods(session as Session) |
| 493 | callback(args) |
| 494 | }) |
| 495 | } |
| 496 | |
| 497 | function save(this: Session, cb?: (err?: any) => void) { |
| 498 | savedHash = hash(this) |
nothing calls this directly
no test coverage detected