This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// some ical string; | |
var rawIcalString; | |
// my ical data - remove decorate parameter | |
var data = ICAL.parse(rawIcalString); | |
var component = new ICAL.Component(data); | |
// later I store it in the DB | |
var structuredCloneData; |