UNPKG

rrule

Version:

JavaScript library for working with recurrence rules for calendar dates.

22 lines 840 B
/* ! * rrule.js - Library for working with recurrence rules for calendar dates. * https://github.com/jakubroztocil/rrule * * Copyright 2010, Jakub Roztocil and Lars Schoning * Licenced under the BSD licence. * https://github.com/jakubroztocil/rrule/blob/master/LICENCE * * Based on: * python-dateutil - Extensions to the standard Python datetime module. * Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net> * Copyright (c) 2012 - Tomi Pieviläinen <tomi.pievilainen@iki.fi> * https://github.com/jakubroztocil/rrule/blob/master/LICENCE * */ export { RRule } from './rrule'; export { RRuleSet } from './rruleset'; export { rrulestr } from './rrulestr'; export { Frequency } from './types'; export { Weekday, ALL_WEEKDAYS } from './weekday'; export { datetime } from './dateutil'; //# sourceMappingURL=index.js.map