Rocky_Mountain_Vending/.pnpm-store/v10/files/33/b9b6b291faff6f116aa3ecf7420f897a59278b7a14d0b33fa93d0452b83c3a8a20b18608cdba2aad628f87177938c05c5138f185d245ee2f4ce8e916546dbf
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

24 lines
542 B
Text

"use strict";
exports.weeksToDays = weeksToDays;
var _index = require("./constants.cjs");
/**
* @name weeksToDays
* @category Conversion Helpers
* @summary Convert weeks to days.
*
* @description
* Convert a number of weeks to a full number of days.
*
* @param weeks - The number of weeks to be converted
*
* @returns The number of weeks converted in days
*
* @example
* // Convert 2 weeks into days
* const result = weeksToDays(2)
* //=> 14
*/
function weeksToDays(weeks) {
return Math.trunc(weeks * _index.daysInWeek);
}