Files
website/helpers/strconv.go
2025-03-24 23:23:29 +00:00

9 lines
98 B
Go

package helpers
import "strconv"
func Atoi(s string) int {
n, _ := strconv.Atoi(s)
return n
}