(password: string)
| 43 | } |
| 44 | |
| 45 | const password = (password: string): Buffer => { |
| 46 | return writer.addCString(password).flush(code.startup) |
| 47 | } |
| 48 | |
| 49 | const sendSASLInitialResponseMessage = function (mechanism: string, initialResponse: string): Buffer { |
| 50 | // 0x70 = 'p' |
nothing calls this directly
no test coverage detected