()
| 73 | } |
| 74 | |
| 75 | public async getPath() { |
| 76 | await this._barrier.wait(); |
| 77 | const { pathname, search, hash } = this._history!.location; |
| 78 | return `${pathname}${search}${hash}`; |
| 79 | } |
| 80 | |
| 81 | // push the url with current history |
| 82 | public async push(path: string) { |
no test coverage detected