mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
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;
|