@fluentui/react-northstar
Version:
A themable React component library.
13 lines (11 loc) • 419 B
JavaScript
import { compareDatePart } from '../dateMath/dateMath';
/**
* Checks if `date` happens earlier than min date
* @param date - date to check
* @param options - object with min date to check against
*/
export var isBeforeMinDate = function isBeforeMinDate(date, options) {
var minDate = options.minDate;
return minDate ? compareDatePart(minDate, date) >= 1 : false;
};
//# sourceMappingURL=isBeforeMinDate.js.map