Files
klz-cables.com/.pnpm-store/v10/files/4e/e9db6ed63614cd42343df4d9091aa6c6ed51e059b1a5903914f0e35ac8e5e14fe3c507c06cc86d5f2a46bccc1a8f5eba2593ba0c100e63348f13066bbb1f74
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

35 lines
904 B
Plaintext

"use strict";
exports.daysToWeeks = daysToWeeks;
var _index = require("./constants.js");
/**
* @name daysToWeeks
* @category Conversion Helpers
* @summary Convert days to weeks.
*
* @description
* Convert a number of days to a full number of weeks.
*
* @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
*
* @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 weeks = days / _index.daysInWeek;
const result = Math.trunc(weeks);
// Prevent negative zero
return result === 0 ? 0 : result;
}