Skip to content

v0.9.1

Compare
Choose a tag to compare
@angeloashmore angeloashmore released this 01 Jul 19:23
· 15 commits to master since this release
  • Exclude a property's trailing semicolon if no value is set.

    Example:

    event.addProp('ATTENDEE', null, {
      CN: 'Sample Company',
      RSVP: 'FALSE:mailto:[email protected]'
    }

    Now produces this:

    ATTENDEE;CN=Sample Company;RSVP=FALSE:mailto:[email protected]
    

    Instead of this:

    ATTENDEE;CN=Sample Company;RSVP=FALSE:mailto:[email protected]:
    

    (Note the trailing semicolon)