@zerodep/case-pascal
v2.0.15
Published
A utility that deburrs a string, converts it to PascalCase, strips all non-alphanumeric characters and removes leading numbers.
Downloads
90
Readme
@zerodep/case-pascal
A utility that deburrs a string, converts it to PascalCase, strips all non-alphanumeric characters and removes leading numbers.
This utility is intended for database field names, CSV header conversion, and other field normalizations, among other uses.
Full documentation is available at the zerodep.app page.
Signature
declare const casePascal: (value: string) => string;
Examples
// ESM
import { casePascal } from '@zerodep/case-pascal';
// CJS
const { casePascal } = require('@zerodep/case-pascal');
Use Cases
casePascal('from sentence case'); // "FromSentenceCase"
casePascal('from.dot.case'); // "FromDotCase"
casePascal('from-kebab-case'); // "FromKebabCase"
casePascal('from_snake_case'); // "FromSnakeCase"
casePascal('FromPascalCase'); // "FromPascalCase"
casePascal(''); // ""
// with non-alphanumeric characters in the string
casePascal('A string with some !@#$%^& characters'); // "AStringWithSomeCharacters"
casePascal('A #22 character long string'); // "A22CharacterLongString"
casePascal("I'm a sp3c!al $741ng"); // "IMASp3cAl741ng"
// with accented characters
casePascal('àëîóüý Žøñç'); // "AeiouyZonc"
// with leading special characters and numbers
casePascal('__with many --- spaces'); // "WithManySpaces"
casePascal('12 monkeys see 6 bananas'); // "MonkeysSee6Bananas"
// non-string values
casePascal({ not: 'a string' }); // throws ZeroDepError: Value is not a string
ZeroDep Advantages
- Zero npm dependencies - completely eliminates all risk of supply-chain attacks, decreases node_modules folder size
- ESM & CJS - supports both ECMAScript modules and common JavaScript exports
- Tree Shakable - built to be fully tree shakable ensuring your packages are the smallest possible size
- Fully Typed - typescript definitions are provided/built-in to every package for a superior developer experience
- Semantically Named - package and method names are easy to grok, remember, use, and read
- Documented - actually useful documentation with examples at zerodep.app
- Intelligently Packaged - multiple npm packages of different sizes available allowing a menu or a-la-carte composition of capabilities
- 100% Tested - all methods and packages are fully unit tested
- Predictably Versioned - semantically versioned for peace-of-mind upgrading, valuable changelogs for understand changes
- MIT Licensed - permissively licensed for maximum usability