mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 10:14:29 -07:00
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
export function unslug(slug) {
|
|
// Replace hyphens and underscores with spaces
|
|
let result = slug.replace(/[-_]/g, " ");
|
|
|
|
// Capitalize the first letter of each word
|
|
return result.replace(/\b\w/g, function (char) {
|
|
return char.toUpperCase();
|
|
});
|
|
}
|