Skip to content

Commit

Permalink
chore: fixed lint per <5054af6>
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Feb 27, 2025
1 parent 399cb6b commit 04429e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,6 @@ if (util.inspect.custom) {
* @param {number} [limit] - The maximum number of values to return.
* @returns {string[]} An array of values from the comma-separated string.
*/
function splitCommaSeparatedValues(value, limit) {
return value.split(',', limit).map(v => v.trim());
function splitCommaSeparatedValues (value, limit) {
return value.split(',', limit).map(v => v.trim())
}

0 comments on commit 04429e4

Please sign in to comment.