UNPKG
@samlevy/string-helpers
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Basic string helper functions
github.com/samlev/string-helpers
samlev/string-helpers
@samlevy/string-helpers
/
src
/
lcfirst.ts
2 lines
(1 loc)
•
84 B
text/typescript
View Raw
1
2
export default (str: string): string => str.
charAt
(
0
).
toLowerCase
() + str.
slice
(
1
);