UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

8 lines (7 loc) 172 B
export { capitalizeFirstLetter }; function capitalizeFirstLetter(word) { if (!word[0]) { return word; } return word[0].toUpperCase() + word.slice(1); }