(url)
| 14467 | } |
| 14468 | |
| 14469 | function stripHash(url) { |
| 14470 | var index = url.indexOf('#'); |
| 14471 | return index === -1 ? url : url.substr(0, index); |
| 14472 | } |
| 14473 | |
| 14474 | function stripFile(url) { |
| 14475 | return url.substr(0, stripHash(url).lastIndexOf('/') + 1); |
no outgoing calls
no test coverage detected