MCPcopy Create free account
hub / github.com/DHTMLX/scheduler / removeFilteredDays

Function removeFilteredDays

codebase/sources/dhtmlxscheduler.js:17749–17758  ·  view source on GitHub ↗
(dayset, start, end, ii, options)

Source from the content-addressed store, hash-verified

17747 return iterResult.getValue();
17748 }
17749 function removeFilteredDays(dayset, start, end, ii, options) {
17750 var filtered = false;
17751 for (var dayCounter = start; dayCounter < end; dayCounter++) {
17752 var currentDay = dayset[dayCounter];
17753 filtered = isFiltered(ii, currentDay, options);
17754 if (filtered)
17755 dayset[currentDay] = null;
17756 }
17757 return filtered;
17758 }
17759 function makeTimeset(ii, counterDate, options) {
17760 var freq = options.freq, byhour = options.byhour, byminute = options.byminute, bysecond = options.bysecond;
17761 if (freqIsDailyOrGreater(freq)) {

Callers 1

iterFunction · 0.70

Calls 1

isFilteredFunction · 0.70

Tested by

no test coverage detected