(url)
| 14532 | } |
| 14533 | |
| 14534 | function stripHash(url) { |
| 14535 | var index = url.indexOf('#'); |
| 14536 | return index === -1 ? url : url.substr(0, index); |
| 14537 | } |
| 14538 | |
| 14539 | function stripFile(url) { |
| 14540 | return url.substr(0, stripHash(url).lastIndexOf('/') + 1); |
no outgoing calls
no test coverage detected