Initial open source release

This commit is contained in:
Ronni Skansing
2025-08-21 16:14:09 +02:00
commit 11cf01f08e
488 changed files with 97180 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
package utils
import (
"strings"
"time"
)
func CSVRemoveFormulaStart(input string) string {
if input == "" {
return input
}
if len(input) > 0 && strings.ContainsAny(input[0:1], "=@+-") {
return "'" + input
}
return input
}
func CSVFromDate(d *time.Time) string {
if d == nil {
return ""
}
return CSVRemoveFormulaStart(d.Format(time.RFC3339))
}