UNPKG

telefunc

Version:

Remote functions. Instead of API.

5 lines (4 loc) 127 B
export { lowercaseFirstLetter }; function lowercaseFirstLetter(str) { return str.charAt(0).toLowerCase() + str.slice(1); }