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

29 lines
809 B
Plaintext

"use strict";
exports.isLeapYear = isLeapYear;
var _index = require("./toDate.js");
/**
* @name isLeapYear
* @category Year Helpers
* @summary Is the given date in the leap year?
*
* @description
* Is the given date in the leap year?
*
* @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 date - The date to check
*
* @returns The date is in the leap year
*
* @example
* // Is 1 September 2012 in the leap year?
* const result = isLeapYear(new Date(2012, 8, 1))
* //=> true
*/
function isLeapYear(date) {
const _date = (0, _index.toDate)(date);
const year = _date.getFullYear();
return year % 400 === 0 || (year % 4 === 0 && year % 100 !== 0);
}