EdgexAgent/device-ble-go/vendor/github.com/zeebo/errs/is_go1.20.go
2025-07-10 20:40:32 +08:00

9 lines
176 B
Go

//go:build go1.20
package errs
import "errors"
// Is checks if any of the underlying errors matches target
func Is(err, target error) bool { return errors.Is(err, target) }