It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
32
backend/node_modules/date-fns/hoursToSeconds/index.js
generated
vendored
Normal file
32
backend/node_modules/date-fns/hoursToSeconds/index.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = hoursToSeconds;
|
||||
var _index = _interopRequireDefault(require("../_lib/requiredArgs/index.js"));
|
||||
var _index2 = require("../constants/index.js");
|
||||
/**
|
||||
* @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;
|
Reference in New Issue
Block a user