Skip to content

Commit e831ec1

Browse files
committed
1.7.2
1 parent 8dca580 commit e831ec1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,10 @@ Can't find what you need in the readme? Check out our documentation here: https:
174174

175175
## Latest version changelog
176176

177+
### 1.7.2
178+
179+
- FIX: console.log removed
180+
177181
### 1.7.1
178182

179183
- FIX: Headers fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jira.js",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"main": "out/index.js",
55
"types": "out/index.d.ts",
66
"repository": "https://github.com/MrRefactoring/jira.js.git",

src/helpers/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ export const removeEmptyValues = (obj: { [key: string]: unknown }) => Object.ent
1111
} else if (val == null) {
1212
// eslint-disable-next-line no-param-reassign
1313
delete obj[key];
14-
} else {
15-
console.log(obj);
1614
}
1715
});
1816

0 commit comments

Comments
 (0)