mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 08:44:04 +01:00
11 lines
208 B
Go
11 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)
|
|
}
|