UNPKG
@ehduardu/bat-framework
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
0.0.1
A simple framework for Google Apps Script
github.com/ehduardu/bat-framework
ehduardu/bat-framework
@ehduardu/bat-framework
/
src
/
tools
/
capitalize.ts
5 lines
(4 loc)
•
154 B
text/typescript
View Raw
1
2
3
4
5
const
capitalize = (
text
:
string
):
string
=>
{
return
text.
substring
(
0
,
1
).
toUpperCase
() + text.
substring
(
1
, text.
length
); }
export
default
capitalize;