human-ids 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.0.7] - 2023-07-07
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Changed README.md to correctly display usage information
|
|
11
|
+
## [1.0.7] - 2023-07-07
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Changed README.md to correctly display usage information
|
|
7
15
|
## [1.0.6] - 2023-07-07
|
|
8
16
|
|
|
9
17
|
### Changed
|
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ To use Human IDs in your project, you can install it via npm:
|
|
|
25
25
|
```she
|
|
26
26
|
npm install human-ids
|
|
27
27
|
```
|
|
28
|
+
## Usage example
|
|
28
29
|
|
|
29
30
|
```javascript
|
|
30
31
|
import humanId from 'human-ids'
|
|
@@ -43,7 +44,7 @@ const settings = {
|
|
|
43
44
|
},
|
|
44
45
|
};
|
|
45
46
|
|
|
46
|
-
// Generate an ID using the
|
|
47
|
+
// Generate an ID using the function
|
|
47
48
|
console.log(humanId())
|
|
48
49
|
```
|
|
49
50
|
## Configuration
|