UNPKG

@rashedmakkouk/dev-utils

Version:
12 lines (11 loc) 371 B
/** Typings */ import { LetterCaseOptions } from '../types'; /** * Formats supplied string to defined case. * * {@link https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage | Start Case} * * @returns Formatted string. */ declare function letterCase(text: string | null | undefined, options: LetterCaseOptions): string; export default letterCase;