Feat(BE-36,37,38,39): master area, customer, kandang, location, warehouse

This commit is contained in:
Hafizh A. Y
2025-10-02 10:51:15 +07:00
parent dbc1f79a36
commit e8905be856
79 changed files with 3745 additions and 169 deletions
+13
View File
@@ -0,0 +1,13 @@
package utils
import "strings"
// NormalizeTrim returns the input string without leading/trailing whitespace.
func NormalizeTrim(value string) string {
return strings.TrimSpace(value)
}
// NormalizeUpper returns the trimmed, upper-case version of value.
func NormalizeUpper(value string) string {
return strings.ToUpper(NormalizeTrim(value))
}