Files
klz-cables.com/.pnpm-store/v10/files/c0/9a284e1fdc63498893800415b293268bfc34839e2fb1d49320bdf6a9d813813dca75a99111b2611b7bc2f1cef136702cbdc9794b582f4212252bedd1ae1556
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

32 lines
698 B
Plaintext

"use strict";
exports.daysToWeeks = daysToWeeks;
var _index = require("./constants.cjs");
/**
* @name daysToWeeks
* @category Conversion Helpers
* @summary Convert days to weeks.
*
* @description
* Convert a number of days to a full number of weeks.
*
* @param days - The number of days to be converted
*
* @returns The number of days converted in weeks
*
* @example
* // Convert 14 days to weeks:
* const result = daysToWeeks(14)
* //=> 2
*
* @example
* // It uses trunc rounding:
* const result = daysToWeeks(13)
* //=> 1
*/
function daysToWeeks(days) {
const result = Math.trunc(days / _index.daysInWeek);
// Prevent negative zero
return result === 0 ? 0 : result;
}