Skip to content

Commit bef96b7

Browse files
committed
♻️ refactor: refactor codebase #2
1 parent 1f3f889 commit bef96b7

16 files changed

+93
-94
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# unify4go
1+
# unify4g
22

3-
**unify4go** is a comprehensive Go library designed to enhance productivity by providing a suite of utilities for string manipulation, time handling, type conversions, and more. It aims to facilitate cleaner and more maintainable code.
3+
**unify4g** is a comprehensive Go library designed to enhance productivity by providing a suite of utilities for string manipulation, time handling, type conversions, and more. It aims to facilitate cleaner and more maintainable code.
44

55
## Features
66

77
- **String Utilities**: Enhance and manipulate strings efficiently.
8-
- **Time Handling**: Simplify date and time operations.
98
- **Type Conversions**: Convert between various data types effortlessly.
109
- **Miscellaneous Utilities**: A collection of tools to enhance your Go development experience.
1110

@@ -20,12 +19,12 @@ To install, you can use the following commands based on your preference:
2019
- For a specific version:
2120

2221
```bash
23-
go get github.com/sivaosorg/unify4go[email protected]
22+
go get github.com/sivaosorg/unify4g[email protected]
2423
```
2524

2625
- For the latest version:
2726
```bash
28-
go get -u github.com/sivaosorg/unify4go.git@latest
27+
go get -u github.com/sivaosorg/unify4g.git@latest
2928
```
3029

3130
### Contributing
@@ -35,13 +34,13 @@ To contribute to project, follow these steps:
3534
1. Clone the repository:
3635

3736
```bash
38-
git clone --depth 1 https://github.com/sivaosorg/unify4go.git
37+
git clone --depth 1 https://github.com/sivaosorg/unify4g.git
3938
```
4039

4140
2. Navigate to the project directory:
4241

4342
```bash
44-
cd unify4go
43+
cd unify4g
4544
```
4645

4746
3. Prepare the project environment:

const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
import (
44
"regexp"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sivaosorg/unify4go
1+
module github.com/sivaosorg/unify4g
22

33
go 1.23.1
44

hashmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
// HashMap is a generic hash map data structure that maps keys of type `K` to values of type `V`.
44
// `K` and `V` must be comparable types, meaning that they support comparison operators (like == and !=).

hashset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
import "fmt"
44

json.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
import (
44
jsonI "github.com/json-iterator/go"

normalization.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
// normalize_rune takes a rune as input and returns its normalized string representation.
44
//

random.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
import (
44
"math/rand"

reflect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
import "reflect"
44

stack.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package unify4go
1+
package unify4g
22

33
// Stack is a generic stack data structure that stores elements of type `T`.
44
// It provides basic stack operations like push, pop, and peek.

0 commit comments

Comments
 (0)