(chunk)
| 228 | } |
| 229 | |
| 230 | #decodeBoolean(chunk) { |
| 231 | const boolean = chunk[this.#cursor] === ASCII.t; |
| 232 | this.#cursor += 3; // skip {t | f}\r\n |
| 233 | return boolean; |
| 234 | } |
| 235 | |
| 236 | #decodeNumber(type, chunk) { |
| 237 | if (type === String) { |
no outgoing calls
no test coverage detected