jens-maus / node-ical

NodeJS class for parsing iCalendar/ICS files
Apache License 2.0
118 stars 50 forks source link

README rrule example typo? #315

Open sirisian opened 5 months ago

sirisian commented 5 months ago

https://github.com/jens-maus/node-ical?tab=readme-ov-file#recurrence-rule-rrule

There's a line:

const tz = event.rrule.origOptions.tzid === localTimezone ? event.rrule.origOptions.tzid : localTimezone

Which would just be identical to writing:

const tz = localTimezone

I'm not using this specific code, but I noticed it when skimming.