UNPKG

vike

Version:

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

10 lines (9 loc) 270 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalizeFirstLetter = capitalizeFirstLetter; function capitalizeFirstLetter(word) { if (!word[0]) { return word; } return word[0].toUpperCase() + word.slice(1); }