@fluentui/react-northstar
Version:
A themable React component library.
24 lines (22 loc) • 765 B
JavaScript
import { compareDatePart } from '../dateMath/dateMath';
/**
* Generates a list of dates, bounded by min and max dates
* @param dateRange - input date range
* @param minDate - min date to limit the range
* @param maxDate - max date to limit the range
*/
export var getBoundedDateRange = function getBoundedDateRange(dateRange, minDate, maxDate) {
var boundedDateRange = [].concat(dateRange);
if (minDate) {
boundedDateRange = boundedDateRange.filter(function (date) {
return compareDatePart(date, minDate) >= 0;
});
}
if (maxDate) {
boundedDateRange = boundedDateRange.filter(function (date) {
return compareDatePart(date, maxDate) <= 0;
});
}
return boundedDateRange;
};
//# sourceMappingURL=getBoundedDateRange.js.map