mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
12 lines
183 B
Go
12 lines
183 B
Go
package numberutils
|
|
|
|
import "strconv"
|
|
|
|
func FormatInt64(value int64) string {
|
|
return strconv.FormatInt(value, 10)
|
|
}
|
|
|
|
func FormatInt(value int) string {
|
|
return strconv.Itoa(value)
|
|
}
|