Skip to content

Commit

Permalink
_parseParameters: Set correct return value JSdoc description
Browse files Browse the repository at this point in the history
  • Loading branch information
onny committed Jun 14, 2024
1 parent 7e05695 commit f383502
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/ical/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,10 @@ parse._parseValue = function(value, type, designSet, structuredValue) {
* @param {String} line A single unfolded line
* @param {Numeric} start Position to start looking for properties
* @param {Object} designSet The design data to use for this property
* @return {Object} key/value pairs
* @return {[Object, Number, Number]} Array containing:
* - 1. Key/value pairs of parsed parameters,
* - 2. Position of the last character processed,
* - 3. Position of the last parameter found
*/
parse._parseParameters = function(line, start, designSet) {
let lastParam = start;
Expand Down

0 comments on commit f383502

Please sign in to comment.