(message: string)
| 261 | } |
| 262 | |
| 263 | const copyFail = (message: string): Uint8Array => { |
| 264 | return cstringMessage(code.copyFail, message) |
| 265 | } |
| 266 | |
| 267 | const codeOnlyBuffer = (code: code): Uint8Array => |
| 268 | new Uint8Array([code, 0x00, 0x00, 0x00, 0x04]) |
nothing calls this directly
no test coverage detected