pascal-case
Advanced tools
Weekly downloads
Readme
Transform into a string of capitalized words without separators.
npm install pascal-case --save
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
.
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"
MIT
FAQs
Transform into a string of capitalized words without separators
The npm package pascal-case receives a total of 10,107,004 weekly downloads. As such, pascal-case popularity was classified as popular.
We found that pascal-case demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.