# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
Go Utils - Fully Tested, Benchmarked and Error Free Set of Utilities
⨠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.
š Install
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.
š” Usage
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'))
}