ical.js
ical.js copied to clipboard
rrule parse exit
line 1446 in rrule.js causes the parser to die if attr is empty. Seems like it should gracefully skip over that.
The issue is any line in ical with a semi colon at the end. Instead of modifying rrule, node-ical.js can have this added at line 30
rule = rule.replace(/\;$/, '');