init commit

This commit is contained in:
2025-11-01 15:01:22 -09:00
commit 143b17a6c1
8 changed files with 315 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package utils
import "fmt"
func Stringify(value any) string {
switch value.(type) {
case string:
return fmt.Sprintf("\"%s\"", value)
default:
return fmt.Sprint(value)
}
}