From 788926a033ead8f3f55f7ae1810ffc0c79a83bc4 Mon Sep 17 00:00:00 2001 From: David Allen Date: Mon, 26 May 2025 22:51:58 -0600 Subject: [PATCH] chore: miscellaneous updates --- internal/util/strings.go | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 internal/util/strings.go diff --git a/internal/util/strings.go b/internal/util/strings.go deleted file mode 100644 index 93a046f..0000000 --- a/internal/util/strings.go +++ /dev/null @@ -1,10 +0,0 @@ -package util - -import "strings" - -func TidyJSON(s string) string { - s = strings.ReplaceAll(s, "\n", "") - s = strings.ReplaceAll(s, "\t", "") - s = strings.ReplaceAll(s, " ", "") - return strings.ReplaceAll(s, "\"", "'") -}