(uri, fragment)
| 2118 | |
| 2119 | |
| 2120 | function replaceFragment(uri, fragment) { |
| 2121 | var hashIndex = uri.indexOf("#"); |
| 2122 | if (hashIndex !== -1) { |
| 2123 | uri = uri.substring(0, hashIndex); |
| 2124 | } |
| 2125 | return uri + "#" + fragment; |
| 2126 | } |
| 2127 | |
| 2128 | },{}],17:[function(require,module,exports){ |
| 2129 | var htmlPaths = require("../styles/html-paths"); |
nothing calls this directly
no outgoing calls
no test coverage detected