(text: string)
| 14 | } |
| 15 | |
| 16 | export function slugify(text: string) { |
| 17 | return text |
| 18 | .toString() |
| 19 | .toLowerCase() |
| 20 | .normalize(`NFD`) |
| 21 | .trim() |
| 22 | .replace(/\./g, ``) |
| 23 | .replace(/\s+/g, `-`) |
| 24 | .replace(/[^\w-]+/g, ``) |
| 25 | .replace(/--+/g, `-`) |
| 26 | } |
| 27 | |
| 28 | export function constructMetadata({ |
| 29 | title = "JStack - Full-Stack Next.js & TypeScript Toolkit", |
no outgoing calls
no test coverage detected