mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +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)
|
||
|
|
}
|