hugoWebsite/node_modules/date-fns/yearsToMonths/index.js

37 lines
936 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = yearsToMonths;
var _index = _interopRequireDefault(require("../_lib/requiredArgs/index.js"));
var _index2 = require("../constants/index.js");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* @name yearsToMonths
* @category Conversion Helpers
* @summary Convert years to months.
*
* @description
* Convert a number of years to a full number of months.
*
* @param {number} years - number of years to be converted
*
* @returns {number} the number of years converted in months
* @throws {TypeError} 1 argument required
*
* @example
* // Convert 2 years into months
* const result = yearsToMonths(2)
* //=> 24
*/
function yearsToMonths(years) {
(0, _index.default)(1, arguments);
return Math.floor(years * _index2.monthsInYear);
}
module.exports = exports.default;