Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
coyotte508
/
bergere-enchantee
like
2
License:
other
Model card
Files
Files and versions
Community
3
142fc6a
bergere-enchantee
/
src
/
lib
/
utils
/
upperFirst.ts
coyotte508
HF staff
π Fix page switching
c379e82
about 2 years ago
raw
Copy download link
history
blame
Safe
123 Bytes
export
function
upperFirst
(
s:
string
):
string
{
if
(!s) {
return
s;
}
return
s[
0
].
toLocaleUpperCase
() + s.
slice
(
1
);
}