# tiny-case **Repository Path**: mirrors_jquense/tiny-case ## Basic Information - **Project Name**: tiny-case - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-19 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tiny-case Extremely minimal string casing utilities that mimic most of lodash's casing behavior, e.g. numbers are considered seperate "words". ```sh npm i tiny-case ``` ## Usage ```js import { camelCase, pascalCase, snakeCase, kebabCase, titleCase, sentenceCase, words, upperFirst, } from 'tiny-case' words('hi-there john') // ['hi', 'there', 'john'] words(' 1ApplePlease ') // ['1', 'Apple', 'Please'] ```