Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
banana-projects
/
convai
like
2
Running
App
Files
Files
Community
main
convai
/
server
/
lib
/
Utils.ts
Julien Chaumond
server
d0aa19c
over 5 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
99 Bytes
export
function
capitalize
(
s:
string
):
string
{
return
s.
charAt
(
0
).
toUpperCase
() + s.
slice
(
1
);
}