"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = hoursToMinutes; 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 hoursToMinutes * @category Conversion Helpers * @summary Convert hours to minutes. * * @description * Convert a number of hours to a full number of minutes. * * @param {number} hours - number of hours to be converted * * @returns {number} the number of hours converted in minutes * @throws {TypeError} 1 argument required * * @example * // Convert 2 hours to minutes: * const result = hoursToMinutes(2) * //=> 120 */ function hoursToMinutes(hours) { (0, _index.default)(1, arguments); return Math.floor(hours * _index2.minutesInHour); } module.exports = exports.default;