sponge-case
Version:
Transform into a string with random capitalization applied
29 lines (18 loc) • 638 B
Markdown
into a string with random capitalization applied.
```
npm install sponge-case --save
```
```js
import { spongeCase } from "sponge-case";
spongeCase("string"); //=> "sTrinG"
spongeCase("dot.case"); //=> "dOt.caSE"
spongeCase("PascalCase"); //=> "pASCaLCasE"
spongeCase("version 1.2.10"); //=> "VErSIoN 1.2.10"
```
This package is a [pure ESM package](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) and ships with TypeScript definitions. It cannot be `require`'d or used with CommonJS module resolution in TypeScript.
MIT
> Transform