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