(hash: string)
| 164 | |
| 165 | // https://github.com/angular/angular.js/blob/864c7f0/src/ng/location.js#L73 |
| 166 | decodeHash(hash: string) { |
| 167 | hash = decodeURIComponent(hash); |
| 168 | return hash[0] === '#' ? hash.substring(1) : hash; |
| 169 | } |
| 170 | |
| 171 | // https://github.com/angular/angular.js/blob/864c7f0/src/ng/location.js#L149 |
| 172 | // https://github.com/angular/angular.js/blob/864c7f0/src/ng/location.js#L42 |
no outgoing calls
no test coverage detected