feat(sql): Add common whitespace characters, ASCII, HTML, backslashes to literal escaping
This commit is contained in:
12
utils/string.go
Normal file
12
utils/string.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package utils
|
||||
|
||||
func String(s *string) string {
|
||||
if s == nil {
|
||||
return ""
|
||||
}
|
||||
return *s
|
||||
}
|
||||
|
||||
func Pointer(s string) *string {
|
||||
return &s
|
||||
}
|
||||
Reference in New Issue
Block a user