blob: dc05f4191c015eb960d3f7b61ba8350530521bff [file] [log] [blame]
David K. Bainbridgebd6b2882021-08-26 13:31:02 +00001// 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
7package errors
8
9import "errors"
10
11// Is is errors.Is.
12func Is(err, target error) bool { return errors.Is(err, target) }