forked from NYANDEV/forgejo
bc4e06109d
The "unit" part shouldn't have bold style.
24 lines
499 B
Go
24 lines
499 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package templates
|
|
|
|
import "strings"
|
|
|
|
type StringUtils struct{}
|
|
|
|
func NewStringUtils() *StringUtils {
|
|
return &StringUtils{}
|
|
}
|
|
|
|
func (su *StringUtils) HasPrefix(s, prefix string) bool {
|
|
return strings.HasPrefix(s, prefix)
|
|
}
|
|
|
|
func (su *StringUtils) Contains(s, substr string) bool {
|
|
return strings.Contains(s, substr)
|
|
}
|
|
|
|
func (su *StringUtils) Split(s, sep string) []string {
|
|
return strings.Split(s, sep)
|
|
}
|