(value: Uint8Array)
| 1356 | } |
| 1357 | |
| 1358 | function serializeBinary(value: Uint8Array): string { |
| 1359 | return `:${encodeBase64(value)}:`; |
| 1360 | } |
| 1361 | |
| 1362 | function serializeBoolean(value: boolean): string { |
| 1363 | return value ? "?1" : "?0"; |
no test coverage detected