ReactUseKit

capitalize

Capitalize the first letter of a string.

Installation

pnpm dlx shadcn@latest add @reactusekit/capitalize

Usage

import { capitalize } from "@/lib/capitalize"

function App() {
  const text = "hello world"
  const capitalizedText = capitalize(text)

  return (
    <div>
      <p>Original: {text}</p>
      <p>Capitalized: {capitalizedText}</p>
    </div>
  )
}

API

Parameters

ParameterTypeDescription
strstringThe string to capitalize

Returns

TypeDescription
stringThe string with the first letter capitalized