From e87913ea8df86480b4de2a6dbc283f236fc80cca Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 21 Jul 2025 13:15:53 -0700 Subject: [PATCH] Remove unused convert function. --- src/lib/convert.ts | 10 ---------- 1 file changed, 10 deletions(-) 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 { -- 2.47.3