1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-01 23:55:47 +00:00
gitea/vendor/github.com/go-testfixtures/testfixtures/v3/bytes.go

15 lines
298 B
Go
Raw Normal View History

2021-02-28 23:08:33 +00:00
package testfixtures
import (
"encoding/hex"
"fmt"
"strings"
)
func (l *Loader) tryHexStringToBytes(s string) ([]byte, error) {
if !strings.HasPrefix(s, "0x") {
return nil, fmt.Errorf("not a hexadecimal string, must be prefix 0x")
}
return hex.DecodeString(strings.TrimPrefix(s, "0x"))
}