Mohammad Asif cf937194cb Removed un-waned things 1. 5 meses atrás
..
dist cf937194cb Removed un-waned things 1. 5 meses atrás
dist.es2015 cf937194cb Removed un-waned things 1. 5 meses atrás
LICENSE cf937194cb Removed un-waned things 1. 5 meses atrás
README.md cf937194cb Removed un-waned things 1. 5 meses atrás
package.json cf937194cb Removed un-waned things 1. 5 meses atrás

README.md

Pascal Case

NPM version NPM downloads Bundle size

Transform into a string of capitalized words without separators.

Installation

npm install pascal-case --save

Usage

import { pascalCase } from "pascal-case";

pascalCase("string"); //=> "String"
pascalCase("dot.case"); //=> "DotCase"
pascalCase("PascalCase"); //=> "PascalCase"
pascalCase("version 1.2.10"); //=> "Version_1_2_10"

The function also accepts options.

Merge Numbers

If you'd like to remove the behavior prefixing _ before numbers, you can use pascalCaseTransformMerge:

import { pascalCaseTransformMerge } from "pascal-case";

pascalCase("version 12", { transform: pascalCaseTransformMerge }); //=> "Version12"

License

MIT