photoprism/pkg/clean/numeric.go
Michael Mayer eaff0abb6d Videos: Index and display durations of less than one second #3224
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-02-22 16:33:33 +01:00

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)
}