/* eslint-disable eslint-comments/no-unlimited-disable */ /* eslint-disable */ // @ts-nocheck import { minutesInHour } from '../constants/index.ts'; /** * @name hoursToMinutes * @category Conversion Helpers * @summary Convert hours to minutes. * * @description * Convert a number of hours to a full number of minutes. * * @param hours - number of hours to be converted * * @returns The number of hours converted in minutes * * @example * // Convert 2 hours to minutes: * const result = hoursToMinutes(2) * //=> 120 */ export function hoursToMinutes(hours: number): number { return Math.trunc(hours * minutesInHour); } /* eslint-enable */