(buffer)
| 27844 | } |
| 27845 | |
| 27846 | function utf16DetectIncompleteChar(buffer) { |
| 27847 | this.charReceived = buffer.length % 2; |
| 27848 | this.charLength = this.charReceived ? 2 : 0; |
| 27849 | } |
| 27850 | |
| 27851 | function base64DetectIncompleteChar(buffer) { |
| 27852 | this.charReceived = buffer.length % 3; |
nothing calls this directly
no outgoing calls
no test coverage detected