Files
e-tib.com/scratch/test-slugs.ts
Marc Mintel 2dbafec633
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Successful in 1m5s
Build & Deploy / 🏗️ Build (push) Successful in 2m43s
Build & Deploy / 🚀 Deploy (push) Successful in 25s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s
fix(parity): update footer translations, certificate links, references CTA and trade fairs
2026-05-27 13:03:00 +02:00

7 lines
186 B
TypeScript

import { mapSlugToFileSlug } from '../lib/slugs';
async function test() {
const result = await mapSlugToFileSlug('imprint', 'en');
console.log("imprint maps to:", result);
}
test();