()
| 1296 | * @see {@link decodeHex} for the inverse operation to `Uint8Array` |
| 1297 | * @see {@link decodeHexString} for the inverse operation to `string` |
| 1298 | * |
| 1299 | * @category encoding |
| 1300 | * @since 4.0.0 |
| 1301 | */ |
| 1302 | export function encodeHex<E extends Uint8Array | string>(): Getter<string, E> { |
| 1303 | return transform(Encoding.encodeHex) |
| 1304 | } |
| 1305 | |
| 1306 | /** |
| 1307 | * Decodes a Base64 string to a `Uint8Array`. |
| 1308 | * |
nothing calls this directly
no test coverage detected
searching dependent graphs…