(rrule, collection)
| 18214 | return RRuleSet2; |
| 18215 | }(RRule); |
| 18216 | function _addRule(rrule, collection) { |
| 18217 | if (!(rrule instanceof RRule)) { |
| 18218 | throw new TypeError(String(rrule) + " is not RRule instance"); |
| 18219 | } |
| 18220 | if (!includes(collection.map(String), String(rrule))) { |
| 18221 | collection.push(rrule); |
| 18222 | } |
| 18223 | } |
| 18224 | function _addDate(date, collection) { |
| 18225 | if (!(date instanceof Date)) { |
| 18226 | throw new TypeError(String(date) + " is not Date instance"); |
no test coverage detected