@qvant/qui-max
Version:
A Vue 3 Design system for Web.
11 lines (10 loc) • 382 B
JavaScript
import toInteger from "../_lib/toInteger/index.js";
import addMonths from "../addMonths/index.js";
import requiredArgs from "../_lib/requiredArgs/index.js";
function addYears(dirtyDate, dirtyAmount) {
requiredArgs(2, arguments);
var amount = toInteger(dirtyAmount);
return addMonths(dirtyDate, amount * 12);
}
export { addYears as default };
//# sourceMappingURL=index.js.map