├── .github └── workflows │ ├── go.yml │ └── test.yaml ├── LICENSE ├── README.md ├── example_custom_mask_func_test.go ├── go.mod ├── go.sum ├── mask.go └── mask_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/README.md -------------------------------------------------------------------------------- /example_custom_mask_func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/example_custom_mask_func_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/go.sum -------------------------------------------------------------------------------- /mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/mask.go -------------------------------------------------------------------------------- /mask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showa-93/go-mask/HEAD/mask_test.go --------------------------------------------------------------------------------