Files
klz-cables.com/.pnpm-store/v10/files/16/40ab76a8f3e1b949e253719a1cb285328b638b96e73792e9111f17aba54a8c96eafc410e85b39f1cf1f25f2e747f390f9ec5944d9e81565f50131b7e8e0618
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

27 lines
570 B
Plaintext

import { toDate } from "./toDate.js";
/**
* @name isFuture
* @category Common Helpers
* @summary Is the given date in the future?
* @pure false
*
* @description
* Is the given date in the future?
*
* @param date - The date to check
*
* @returns The date is in the future
*
* @example
* // If today is 6 October 2014, is 31 December 2014 in the future?
* const result = isFuture(new Date(2014, 11, 31))
* //=> true
*/
export function isFuture(date) {
return +toDate(date) > Date.now();
}
// Fallback for modularized imports:
export default isFuture;