File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,12 @@ Issue Number: N/A
8
8
9
9
Please check if your PR fulfills the following requirements:
10
10
11
- - [ ] The commit message follows our guidelines: https://github.com/techmmunity/utils/blob/master/CONTRIBUTING.md
11
+ - [ ] The commit message follows [ our guidelines] ( https://github.com/techmmunity/utils/blob/master/CONTRIBUTING.md )
12
+ - [ ] [ GitFlow] ( https://github.com/techmmunity/git-magic/blob/master/docs/en/gitflow.md ) have been used
12
13
- [ ] Tests for the changes have been added / updated
13
- - [ ] Docs have been added / updated
14
+ - [ ] Docs have been added / updated to ` README.md `
14
15
- [ ] The changes has been added to ` CHANGELOG.md `
15
- - [ ] I followed GitFlow pattern to create the branch
16
+ - [ ] Exports for the new functions have been added to ` src/index.ts `
16
17
- [ ] My code produces no warnings or errors
17
18
18
19
## PR Type
Original file line number Diff line number Diff line change @@ -15,6 +15,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
16
16
### Removed
17
17
18
+ ## [ 1.8.1] - 2021-11-13
19
+
20
+ ### Added
21
+
22
+ - Export to ` nest ` at ` src/index.ts `
23
+ - Export to ` isClassInstance ` at ` src/index.ts `
24
+
25
+ ### Changed
26
+
27
+ ### Fixed
28
+
29
+ ### Removed
30
+
18
31
## [ 1.8.0] - 2021-11-13
19
32
20
33
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @techmmunity/utils" ,
3
- "version" : " 1.8.0 " ,
3
+ "version" : " 1.8.1 " ,
4
4
"main" : " index.js" ,
5
5
"types" : " index.d.ts" ,
6
6
"license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change 8
8
9
9
export * from "./lib/clean-obj" ;
10
10
export * from "./lib/sleep" ;
11
+ export * from "./lib/nest" ;
11
12
export * from "./lib/unnest" ;
12
13
13
14
/**
@@ -48,6 +49,7 @@ export * from "./lib/has-url";
48
49
export * from "./lib/is-alphanumeric" ;
49
50
export * from "./lib/is-between" ;
50
51
export * from "./lib/is-brazilian-phone" ;
52
+ export * from "./lib/is-class-instance" ;
51
53
export * from "./lib/is-cnpj" ;
52
54
export * from "./lib/is-cpf" ;
53
55
export * from "./lib/is-dark-hex-color" ;
You can’t perform that action at this time.
0 commit comments