(input: Date, output: Uint8Array, offset: number)
| 226 | } |
| 227 | |
| 228 | function encodeDate(input: Date, output: Uint8Array, offset: number): number { |
| 229 | output[offset++] = 0b110_00001; |
| 230 | return encodeNumber(input.getTime() / 1000, output, offset); |
| 231 | } |
| 232 | |
| 233 | function encodeTag( |
| 234 | input: CborTag<CborType>, |
no test coverage detected