designtopack/src/helpers/index.js
2024-10-08 17:29:59 +02:00

9 lines
215 B
JavaScript

function toPascalCase(string) {
return string.replace(/\p{L}+/gu, function (w) {
return (
w[0].toLocaleUpperCase("fr-FR") + w.slice(1).toLocaleLowerCase("fr-FR")
);
});
}
export { toPascalCase };