(hash?: string | number | null)
| 712 | hash(): string; |
| 713 | hash(hash: string | number | null): this; |
| 714 | hash(hash?: string | number | null): string | this { |
| 715 | if (typeof hash === 'undefined') { |
| 716 | return this.$$hash; |
| 717 | } |
| 718 | |
| 719 | this.$$hash = hash !== null ? hash.toString() : ''; |
| 720 | |
| 721 | this.composeUrls(); |
| 722 | return this; |
| 723 | } |
| 724 | |
| 725 | /** |
| 726 | * Changes to `$location` during the current `$digest` will replace the current |
no test coverage detected