feat: implement text inspector and case converter tool

This commit is contained in:
2024-05-14 18:01:20 +02:00
parent 90ba9f4f8e
commit 5113fe626b
13 changed files with 471 additions and 47 deletions

View File

@@ -20,3 +20,5 @@ export const formatOctal = formatNumber(3, " ");
export const formatBinary = formatNumber(4, " ");
export const unformatNumber = (x: string) => x.replaceAll(/[ ,]/g, "");
export function noOp() {}