UNPKG
virool-pivot
Version:
latest (0.8.42)
0.8.42
0.8.41
A web-based exploratory visualization UI for Druid.io
github.com/implydata/pivot
implydata/pivot
virool-pivot
/
src
/
client
/
utils
/
string
/
string.ts
4 lines
(3 loc)
•
120 B
text/typescript
View Raw
1
2
3
4
export
function
firstUp
(
str
:
string
):
string
{
return
str ? str.
charAt
(
0
).
toUpperCase
() + str.
slice
(
1
) :
undefined
; }