eaff0abb6d
Signed-off-by: Michael Mayer <michael@photoprism.app>
10 lines
208 B
Go
10 lines
208 B
Go
package clean
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// Numeric removes non-numeric characters from a string and returns the result.
|
|
func Numeric(s string) string {
|
|
return txt.Numeric(s)
|
|
}
|