antdv-eoi
Version:
An enterprise-class UI design language and Vue-based implementation
30 lines (25 loc) • 760 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.goStartMonth = goStartMonth;
exports.goEndMonth = goEndMonth;
exports.goTime = goTime;
exports.includesTime = includesTime;
function goStartMonth(time) {
return time.clone().startOf('month');
}
function goEndMonth(time) {
return time.clone().endOf('month');
}
function goTime(time, direction, unit) {
return time.clone().add(direction, unit);
}
function includesTime() {
var timeList = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
var time = arguments.length > 1 ? arguments[1] : undefined;
var unit = arguments.length > 2 ? arguments[2] : undefined;
return timeList.some(function (t) {
return t.isSame(time, unit);
});
}