(hash: string)
| 137 | |
| 138 | // https://github.com/angular/angular.js/blob/864c7f0/src/ng/location.js#L44 |
| 139 | encodeHash(hash: string) { |
| 140 | hash = encodeUriSegment(hash); |
| 141 | return hash ? '#' + hash : ''; |
| 142 | } |
| 143 | |
| 144 | // https://github.com/angular/angular.js/blob/864c7f0/src/ng/location.js#L27 |
| 145 | decodePath(path: string, html5Mode = true): string { |
no test coverage detected