This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a `toString` property, numbers and booleans. Empty values (`null` and `undefined`) will result in an empty string.
## Installation
```
npm install param-case --save
```
## Usage
```javascript
varparamCase=require('param-case')
paramCase('string')//=> "string"
paramCase('camelCase')//=> "camel-case"
paramCase('sentence case')//=> "sentence-case"
paramCase('MY STRING','tr')//=> "my-strıng"
```
## Typings
Includes a [TypeScript definition](param-case.d.ts).