* @param {string} input * @returns {Uint8Array}
(input)
| 180 | * @returns {Uint8Array} |
| 181 | */ |
| 182 | function stringPercentDecode(input) { |
| 183 | // 1. Let bytes be the UTF-8 encoding of input. |
| 184 | const bytes = lazyEncoder().encode(input); |
| 185 | |
| 186 | // 2. Return the percent-decoding of bytes. |
| 187 | return percentDecode(bytes); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * @param {number} byte |
no test coverage detected
searching dependent graphs…