(options = {})
| 48 | ); |
| 49 | |
| 50 | function MongoStore(options = {}) { |
| 51 | TokenStore.call(this); |
| 52 | |
| 53 | this._options = options || {}; |
| 54 | } |
| 55 | |
| 56 | util.inherits(MongoStore, TokenStore); |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected