gab-social/app/javascript/gabsocial/utils/unslugify.js

8 lines
283 B
JavaScript
Raw Normal View History

// https://github.com/danny-wood/unslugify/blob/master/index.js
export default function unslugify(text) {
const result = `${text}`.replace(/\-/g, " ");
return result.replace(/\w\S*/g, function (txt) {
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
});
}