vendor/google.golang.org/protobuf/internal/errors/is_go113.go
changeset 256 6d9efbef00a9
child 260 445e01aede7e
equal deleted inserted replaced
255:4f153a23adab 256:6d9efbef00a9
       
     1 // Copyright 2020 The Go Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style
       
     3 // license that can be found in the LICENSE file.
       
     4 
       
     5 // +build go1.13
       
     6 
       
     7 package errors
       
     8 
       
     9 import "errors"
       
    10 
       
    11 // Is is errors.Is.
       
    12 func Is(err, target error) bool { return errors.Is(err, target) }