diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-04-05 09:37:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 09:37:20 +0000 |
commit | ed5ad8cac44119f33ab595cb790a8603a53569c9 (patch) | |
tree | f03137aa61aa8a989e8dd1df47a93a38707533a0 /vendor/github.com/go-task/slim-sprig/reflect.go | |
parent | 6ca4bc3fe4f9f96f8c9deca5db5138d68857a831 (diff) | |
download | podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.gz podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.bz2 podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.zip |
Bump github.com/onsi/ginkgo from 1.15.2 to 1.16.0
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.15.2 to 1.16.0.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v1.15.2...v1.16.0)
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/go-task/slim-sprig/reflect.go')
-rw-r--r-- | vendor/github.com/go-task/slim-sprig/reflect.go | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/github.com/go-task/slim-sprig/reflect.go b/vendor/github.com/go-task/slim-sprig/reflect.go new file mode 100644 index 000000000..8a65c132f --- /dev/null +++ b/vendor/github.com/go-task/slim-sprig/reflect.go @@ -0,0 +1,28 @@ +package sprig + +import ( + "fmt" + "reflect" +) + +// typeIs returns true if the src is the type named in target. +func typeIs(target string, src interface{}) bool { + return target == typeOf(src) +} + +func typeIsLike(target string, src interface{}) bool { + t := typeOf(src) + return target == t || "*"+target == t +} + +func typeOf(src interface{}) string { + return fmt.Sprintf("%T", src) +} + +func kindIs(target string, src interface{}) bool { + return target == kindOf(src) +} + +func kindOf(src interface{}) string { + return reflect.ValueOf(src).Kind().String() +} |