(other)
| 239 | } |
| 240 | |
| 241 | sameAs(other) { |
| 242 | return ( |
| 243 | this.toLocation() === other.toLocation() && |
| 244 | queryString.stringify(this.context) === |
| 245 | queryString.stringify(other.context) && |
| 246 | this.path === other.path |
| 247 | ); |
| 248 | } |
| 249 | |
| 250 | toLocation() { |
| 251 | // Turn the state to a query string, but hiding the params implicit in the |
no test coverage detected