File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,10 @@ Can't find what you need in the readme? Check out our documentation here: https:
174
174
175
175
## Latest version changelog
176
176
177
+ ### 1.7.2
178
+
179
+ - FIX: console.log removed
180
+
177
181
### 1.7.1
178
182
179
183
- FIX: Headers fixes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jira.js" ,
3
- "version" : " 1.7.1 " ,
3
+ "version" : " 1.7.2 " ,
4
4
"main" : " out/index.js" ,
5
5
"types" : " out/index.d.ts" ,
6
6
"repository" : " https://github.com/MrRefactoring/jira.js.git" ,
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ export const removeEmptyValues = (obj: { [key: string]: unknown }) => Object.ent
11
11
} else if ( val == null ) {
12
12
// eslint-disable-next-line no-param-reassign
13
13
delete obj [ key ] ;
14
- } else {
15
- console . log ( obj ) ;
16
14
}
17
15
} ) ;
18
16
You can’t perform that action at this time.
0 commit comments