Skip to content

Instantly share code, notes, and snippets.

@friedow
friedow / string-to-pascal-case.ts
Last active August 7, 2020 09:06 — forked from jacks0n/string-to-pascal-case.js
Convert a string in JavaScript to Pascal Case (removing non alphabetic characters).
declare global {
interface String {
toPascalCase(): string;
}
}
/**
* Convert a string to Pascal Case (removing non alphabetic characters).
*
* @example