(input)
| 51520 | const start = position.position; |
| 51521 | if (idx === -1) { |
| 51522 | position.position = input.length; |
| 51523 | return input.slice(start); |
| 51524 | } |
| 51525 | position.position = idx; |
| 51526 | return input.slice(start, position.position); |
| 51527 | } |
| 51528 | function stringPercentDecode(input) { |
no test coverage detected
searching dependent graphs…