# tiny-case

> Tiny Casing utils

Latest version **1.0.3** (published 2022-03-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install tiny-case
pnpm add tiny-case
yarn add tiny-case
bun add tiny-case
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2022-03-03 |
| First published | 2020-12-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jason Quense |
| Maintainers | monastic.panic |

## Links

- npm: https://www.npmjs.com/package/tiny-case
- Repository: https://github.com/jquense/tiny-case
- Homepage: https://github.com/jquense/tiny-case#readme
- Issues: https://github.com/jquense/tiny-case/issues
- npm.io page: https://npm.io/package/tiny-case

## Recent versions

- 1.0.3 (latest) — 2022-03-03
- 1.0.2 — 2020-12-18
- 1.0.1 — 2020-12-17
- 1.0.0 — 2020-12-17

## 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']
```

---
_Source: https://npm.io/package/tiny-case · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
