Rocky_Mountain_Vending/.pnpm-store/v10/files/ef/58ea5485128456cb16db743923f9bb00941bd0e0596fb19e06670d20cc8a363e2d3898bb7ec21ea28085cdd4a84db1a9b51fa502187023ecc20376b4ef7ec1
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

25 lines
563 B
Text

import { daysInWeek } from "./constants.js";
/**
* @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
*/
export function weeksToDays(weeks) {
return Math.trunc(weeks * daysInWeek);
}
// Fallback for modularized imports:
export default weeksToDays;