# no-case

> Transform any case string into a lower case string with a space between each word

Latest version **4.0.0** (published 2023-09-30) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

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

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2023-09-30 |
| First published | 2016-06-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Dependencies | 0 |
| Unpacked size | 8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2404 |
| Author | Blake Embrey |
| Maintainers | blakeembrey |
| Keywords | no, case, space, lower, convert, transform |

## Links

- npm: https://www.npmjs.com/package/no-case
- Repository: https://github.com/blakeembrey/change-case
- Homepage: https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme
- Issues: https://github.com/blakeembrey/change-case/issues
- npm.io page: https://npm.io/package/no-case

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 4.0.0 (latest) — 2023-09-30
- 3.0.4 — 2020-12-02
- 3.0.3 — 2019-12-19
- 3.0.2 — 2019-12-06
- 3.0.1 — 2019-12-03
- 3.0.0 — 2019-12-01
- 2.3.2 — 2017-09-08
- 2.3.1 — 2017-01-05
- 2.3.0 — 2016-06-20
- 2.2.0 — 2016-06-12
- 2.1.0 — 2016-06-11
- 2.0.0 — 2016-06-11

## README

# No Case

> Transform any case string into a lower case string with a space between each word.
> Example: `foo_bar` => `fooBar`

## Installation

```
npm install no-case --save
```

## Usage

```js
import { noCase } from "no-case";

noCase("string"); //=> "string"
noCase("dot.case"); //=> "dot case"
noCase("PascalCase"); //=> "pascal case"
noCase("version 1.2.10"); //=> "version 1 2 10"
```

Optional `options` as the second argument:

- `separateNumbers: boolean` - Splits numbers apart from letters, e.g. `V1` -> `v 1`.
- `locale: string | false` - Lower case according to a specific `locale`, defaulting to the current system locale.

## License

MIT

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