UNPKG

@ffsm/napi

Version:

Napi - A framework using with Next.js for building APIs.

7 lines (6 loc) 143 B
export function ucfirst(str) { if (!str) { return ""; } return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase(); }