(buf, from, to)
| 4697 | return list; |
| 4698 | } |
| 4699 | function replaceByteInByteSequence(buf, from, to) { |
| 4700 | let i3 = buf.indexOf(from); |
| 4701 | while (i3 >= 0) { |
| 4702 | buf[i3] = to; |
| 4703 | i3 = buf.indexOf(from, i3 + 1); |
| 4704 | } |
| 4705 | return buf; |
| 4706 | } |
| 4707 | module2.exports = { |
| 4708 | parseUrlencodedString, |
| 4709 | serializeUrlencoded |
no outgoing calls
no test coverage detected
searching dependent graphs…