* Return cookie data object. * * @return {Object} * @api private
()
| 94 | */ |
| 95 | |
| 96 | get data() { |
| 97 | return { |
| 98 | originalMaxAge: this.originalMaxAge |
| 99 | , expires: this._expires |
| 100 | , secure: this.secure |
| 101 | , httpOnly: this.httpOnly |
| 102 | , domain: this.domain |
| 103 | , path: this.path |
| 104 | } |
| 105 | }, |
| 106 | |
| 107 | /** |
| 108 | * Return a serialized cookie string. |
nothing calls this directly
no outgoing calls
no test coverage detected