Skip to content

Commit 04429e4

Browse files
committed
chore: fixed lint per <5054af6>
1 parent 399cb6b commit 04429e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/request.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,6 +732,6 @@ if (util.inspect.custom) {
732732
* @param {number} [limit] - The maximum number of values to return.
733733
* @returns {string[]} An array of values from the comma-separated string.
734734
*/
735-
function splitCommaSeparatedValues(value, limit) {
736-
return value.split(',', limit).map(v => v.trim());
735+
function splitCommaSeparatedValues (value, limit) {
736+
return value.split(',', limit).map(v => v.trim())
737737
}

0 commit comments

Comments
 (0)