From: Chris Duncan Date: Mon, 21 Jul 2025 20:15:53 +0000 (-0700) Subject: Remove unused convert function. X-Git-Tag: v0.10.5~55^2~41 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=e87913ea8df86480b4de2a6dbc283f236fc80cca;p=libnemo.git Remove unused convert function. --- diff --git a/src/lib/convert.ts b/src/lib/convert.ts index 53908f0..51a4cbb 100644 --- a/src/lib/convert.ts +++ b/src/lib/convert.ts @@ -35,16 +35,6 @@ export class base32 { } return output } - - /** - * Convert a base32 string to a hexadecimal string. - * - * @param {string} base32 - String to convert - * @returns {string} Hexadecimal representation of the input base32 - */ - static toHex (base32: string): string { - return bytes.toHex(this.toBytes(base32)) - } } export class bin {