mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
11 lines
195 B
Go
11 lines
195 B
Go
![]() |
package http
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// DurationMs converts time.Duration to milliseconds
|
||
|
func DurationMs(d time.Duration) float64 {
|
||
|
return float64(d) / 1000.0 / 1000.0 // nano -> micro -> milli
|
||
|
}
|