node-ical-toolkit
node-ical-toolkit copied to clipboard
ICal generator/updater/parser with Timezone/DST, Alams, Organizers, Events, etc. support.
To disable 'Allow new time proposal' we need to add _**X-MICROSOFT-DISALLOW-COUNTER:TRUE**_ . Because there are no such options in this toolkit so I tried to add this tag in _additionalTags_...
function _formatDate uses UTC timing. There should be a support for timezone based timing
it('should parse the content async', function (done) { icalToolkit.parseToJSON(icsContent, function (err, json) { if (err) throw err; assert(json); assert(!(json instanceof Error)); assert(json.VCALENDAR); done(); }); }); What should it be? Please...
Is this repository/library still being maintained?
Hello, im using this package to build a simple email notification with calendar event. The problem is in local serverless development, the time sent with calendar event is correct. but...
fixed missing comma in example
When there are more than one VFREEBUSY elements in the icalendar response, the JSON parser ignores the second VFREEBUSY entry in the calendar data for example if the response from...