summaryrefslogtreecommitdiff
path: root/date-fns/src/monthsToYears/index.ts
blob: f1615a7ce19e460bb8646406ebc8b6cf2be73700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import requiredArgs from '../_lib/requiredArgs/index'
import { monthsInYear } from '../constants/index'

/**
 * @name monthsToYears
 * @category Conversion Helpers
 * @summary Convert number of months to years.
 *
 * @description
 * Convert a number of months to a full number of years.
 *
 * @param {number} months - number of months to be converted
 *
 * @returns {number} the number of months converted in years
 * @throws {TypeError} 1 argument required
 *
 * @example
 * // Convert 36 months to years:
 * const result = monthsToYears(36)
 * //=> 3
 *
 * // It uses floor rounding:
 * const result = monthsToYears(40)
 * //=> 3
 */
export default function monthsToYears(months: number): number {
  requiredArgs(1, arguments)
  const years = months / monthsInYear
  return Math.floor(years)
}