✨ sinhashubham95/go-utils
is an End-To-End Golang Utilities library compatible with Go version >= 1.18. You name it you find it here.
This library provides a ready replacement for most of the Golang standard packages, and also offers many more valuable abstractions. It's completely light-weight implementing all the methods natively, and not bloating this beautiful library with any additional dependencies.
go get github.com/sinhashubham95/go-utils@v1
This library is v1 and follows SemVer strictly.
No breaking changes will be made to exported APIs before v2.0.0.
This library has no dependencies outside the Go standard library.
You can import go-utils
package using the following code snippet:
package sample
import (
"fmt"
"github.com/sinhashubham95/go-utils/strings"
)
Then use one of the helpers below:
func sample() {
fmt.Prinln(strings.Join('n', 'a', 'r', 'u', 't', 'o'))
}
GoDoc: https://godoc.org/github.com/sinhashubham95/go-utils