├── .github ├── dependabot.yaml └── workflows │ ├── go-lint.yaml │ ├── go-mod-verify.yaml │ ├── go-test.yaml │ └── go-vuln.yaml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── json │ └── main.go ├── go.mod ├── go.sum ├── gonull.go └── gonull_test.go /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/go-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.github/workflows/go-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/go-mod-verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.github/workflows/go-mod-verify.yaml -------------------------------------------------------------------------------- /.github/workflows/go-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.github/workflows/go-test.yaml -------------------------------------------------------------------------------- /.github/workflows/go-vuln.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.github/workflows/go-vuln.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/README.md -------------------------------------------------------------------------------- /examples/json/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/examples/json/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/go.sum -------------------------------------------------------------------------------- /gonull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/gonull.go -------------------------------------------------------------------------------- /gonull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukaGiorgadze/gonull/HEAD/gonull_test.go --------------------------------------------------------------------------------