Files
klz-cables.com/.pnpm-store/v10/files/f2/ed74938476fc5802e4bd7d45d82bf0d7f0104605ee068023afab53eaa48a50505f555c6ec65fdf402491f2701492667bcc035b11086ebb6ac859079d914b56
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

1 line
696 B
Plaintext

{"version":3,"file":"memory-storage.cjs","names":["store: AuthenticationData | null"],"sources":["../../../src/auth/utils/memory-storage.ts"],"sourcesContent":["import type { AuthenticationData, AuthenticationStorage } from '../types.js';\n\n/**\n * Simple memory storage implementation\n *\n * @returns AuthenticationStorage\n */\nexport const memoryStorage = () => {\n\tlet store: AuthenticationData | null = null;\n\n\treturn {\n\t\tget: async () => store,\n\t\tset: async (value: AuthenticationData | null) => {\n\t\t\tstore = value;\n\t\t},\n\t} as AuthenticationStorage;\n};\n"],"mappings":"AAOA,MAAa,MAAsB,CAClC,IAAIA,EAAmC,KAEvC,MAAO,CACN,IAAK,SAAY,EACjB,IAAK,KAAO,IAAqC,CAChD,EAAQ,GAET"}