13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
package component
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
templ Content(str string) {
|
|
trimSpace(str)
|
|
}
|
|
|
|
func trimSpace(str string) string {
|
|
return strings.TrimSpace(str)
|
|
} |