Files
kubeshark/utils/units.go
2022-11-26 21:34:45 +03:00

8 lines
170 B
Go

package utils
import "github.com/docker/go-units"
func HumanReadableToBytes(humanReadableSize string) (int64, error) {
return units.FromHumanSize(humanReadableSize)
}