├── .github ├── FUNDING.yml └── workflows │ └── errutil.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── errutil.go ├── errutil_test.go └── go.mod /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jub0bs -------------------------------------------------------------------------------- /.github/workflows/errutil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/.github/workflows/errutil.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/SECURITY.md -------------------------------------------------------------------------------- /errutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/errutil.go -------------------------------------------------------------------------------- /errutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jub0bs/errutil/HEAD/errutil_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jub0bs/errutil 2 | 3 | go 1.24.0 4 | --------------------------------------------------------------------------------