(options, noCache)
| 17771 | var defaultKeys = Object.keys(DEFAULT_OPTIONS$1); |
| 17772 | var RRule = function() { |
| 17773 | function RRule2(options, noCache) { |
| 17774 | if (options === void 0) { |
| 17775 | options = {}; |
| 17776 | } |
| 17777 | if (noCache === void 0) { |
| 17778 | noCache = false; |
| 17779 | } |
| 17780 | this._cache = noCache ? null : new Cache(); |
| 17781 | this.origOptions = initializeOptions$1(options); |
| 17782 | var parsedOptions = parseOptions(options).parsedOptions; |
| 17783 | this.options = parsedOptions; |
| 17784 | } |
| 17785 | RRule2.parseText = function(text, language) { |
| 17786 | return parseText(text, language); |
| 17787 | }; |
nothing calls this directly
no test coverage detected