mirror of
https://github.com/LukeHagar/plex-api-oauth.git
synced 2025-12-08 12:37:50 +00:00
21 lines
542 B
TypeScript
21 lines
542 B
TypeScript
/**
|
|
Convert a camelized string into a lowercased one with a custom separator: `unicornRainbow` → `unicorn_rainbow`.
|
|
|
|
@param string - The camelcase string to decamelize.
|
|
@param separator - The separator to use to put in between the words from `string`. Default: `'_'`.
|
|
|
|
@example
|
|
```
|
|
import decamelize = require('decamelize');
|
|
|
|
decamelize('unicornRainbow');
|
|
//=> 'unicorn_rainbow'
|
|
|
|
decamelize('unicornRainbow', '-');
|
|
//=> 'unicorn-rainbow'
|
|
```
|
|
*/
|
|
declare function decamelize(string: string, separator?: string): string;
|
|
|
|
export = decamelize;
|