stringlib — random string helper
import "github.com/downsized-devs/sdk-go/stringlib"
Stability: Stable — see STABILITY.md
Single-function package.
Features
RandStringBytes(n int) string — random alphanumeric string of length n.
Installation
go get github.com/downsized-devs/sdk-go/stringlib
Quick Start
import "github.com/downsized-devs/sdk-go/stringlib"
_ = stringlib.RandStringBytes(16) // 16-char random string
API Reference
| Symbol |
Signature |
RandStringBytes |
(n int) string |
Dependencies
stdlib only.
Testing
go test ./stringlib/...
Contributing
See CONTRIBUTING.md. Prefer num.RandomString (which overrides now for deterministic tests) for new code.