File size: 132 Bytes
1e92f2d |
1 2 3 |
export const nextSlugToWpSlug = (nextSlug: string) =>
nextSlug && Array.isArray(nextSlug) ? nextSlug.join("/") : nextSlug ?? "/";
|
1e92f2d |
1 2 3 |
export const nextSlugToWpSlug = (nextSlug: string) =>
nextSlug && Array.isArray(nextSlug) ? nextSlug.join("/") : nextSlug ?? "/";
|