next.js / examples /cms-wordpress /src /utils /nextSlugToWpSlug.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
export const nextSlugToWpSlug = (nextSlug: string) =>
nextSlug && Array.isArray(nextSlug) ? nextSlug.join("/") : (nextSlug ?? "/");