forked from mirror/Riven
1
0
Fork 0
Riven/riven/srcgen/node_modules/pascal-case
Mingwei Samuel 74eb5fa045 Update example proxy for v2, use workspaces.
- `example/proxy` is new folder for `example_proxy`.
- `riven` is new folder for the main riven lib.
- Updated metadata to be an array and include HTTP method.
2021-09-09 14:31:39 -07:00
..
LICENSE Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
README.md Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
package.json Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
pascal-case.d.ts Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
pascal-case.js Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00

README.md

Pascal Case

NPM version NPM downloads Build status Test coverage

Pascal case a string. Explicitly adds a single underscore between groups of numbers to keep readability (E.g. 1.20.5 becomes 1_20_5, not 1205).

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 pascal-case --save

Usage

var pascalCase = require('pascal-case')

pascalCase('string')        //=> "String"
pascalCase('camelCase')     //=> "CamelCase"
pascalCase('sentence case') //=> "SentenceCase"

pascalCase('MY STRING', 'tr') //=> "MyStrıng"

Typings

Includes a TypeScript definition.

License

MIT