datasquirel/dist/package-shared/utils/slug-to-normal-text.js
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

14 lines
372 B
JavaScript

export default function slugToNormalText(str) {
if (!str)
return "";
return str
.toLowerCase()
.replace(/ /g, "-")
.replace(/[^a-z0-9\-]/g, "-")
.replace(/-{2,}/g, "-")
.replace(/[-]/g, " ")
.split(" ")
.map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase())
.join(" ");
}