(path, key, value)
| 2366 | } |
| 2367 | |
| 2368 | function addQueryStringValueToPath(path, key, value) { |
| 2369 | return path + (path.indexOf('?') === -1 ? '?' : '&') + (key + '=' + value); |
| 2370 | } |
| 2371 | |
| 2372 | function stripQueryStringValueFromPath(path, key) { |
| 2373 | return path.replace(new RegExp('[?&]?' + key + '=[a-zA-Z0-9]+'), ''); |
no outgoing calls
no test coverage detected
searching dependent graphs…