Files
5chan/src/utils/formatState.js
T

18 lines
395 B
JavaScript
Raw Normal View History

2023-04-23 11:46:14 +02:00
function formatState(str) {
return (
str
.replace(/-/g, " ")
.split(" ")
.map((word) => {
word = word.toLowerCase();
if (word === "ipfs" || word === "ipns") {
return word.toUpperCase();
} else {
return word.charAt(0).toUpperCase() + word.slice(1);
}
})
.join(" ") + "..."
);
}
export default formatState;