Skip to content

Instantly share code, notes, and snippets.

View kewisch's full-sized avatar

Philipp Kewisch kewisch

View GitHub Profile
@lightsofapollo
lightsofapollo / ical.js
Created July 25, 2012 20:27
ICAL bikeshed
// 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;