1
2
3
4
5
6
7
8
export const capitalize = (txt: string) => {
var sentences = txt.split(/[.!?]/);
for (var i = 0; i < sentences.length; i++) {
sentences[i] = sentences[i].trim();
sentences[i] = sentences[i].charAt(0).toUpperCase() + sentences[i].slice(1);
}
return sentences.join(". ");
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023