(input)
| 357 | } |
| 358 | |
| 359 | export function extract(input) { |
| 360 | input = removeHash(input); |
| 361 | const queryStart = input.indexOf('?'); |
| 362 | if (queryStart === -1) { |
| 363 | return ''; |
| 364 | } |
| 365 | |
| 366 | return input.slice(queryStart + 1); |
| 367 | } |
| 368 | |
| 369 | export function parse(query, options) { |
| 370 | options = { |
no test coverage detected
searching dependent graphs…