mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
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)
|
|
}
|