Skip to content

Commit 773c1eb

Browse files
committed
[#383] Support Github PR comment
1 parent 376a679 commit 773c1eb

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/utils/convert-utils.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@
77
'use strict'
88

99
const convertStringStringValue = (value1, value2) => {
10-
const stringValue1 = value1 ? JSON.stringify(value1) : null
11-
const stringValue2 = value2 ? JSON.stringify(value2) : null
12-
1310
return {
14-
stringValue1,
15-
stringValue2,
11+
stringValue1: value1 ? JSON.stringify(value1) : null,
12+
stringValue2: value2 ? JSON.stringify(value2) : null,
1613
}
1714
}
1815

0 commit comments

Comments
 (0)