Files
klz-cables.com/.pnpm-store/v10/files/58/3011e7c9688f7352fe56a6419f6b60d30e978e99f1d07ba364871e182e71c34217cfef35b598adaf2ddd23fe6b655289a47fa387d2b2964bb38f587b965fca
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

9 lines
222 B
Plaintext

import getConfigNow from './getConfigNow.js';
import getDefaultNow from './getDefaultNow.js';
async function getNow(opts) {
return (await getConfigNow(opts?.locale)) ?? getDefaultNow();
}
export { getNow as default };