Skip to content

Instantly share code, notes, and snippets.

@sethdavis512
Created August 14, 2019 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sethdavis512/d8e4bb746ee51b4a1b99092648b486b1 to your computer and use it in GitHub Desktop.
Save sethdavis512/d8e4bb746ee51b4a1b99092648b486b1 to your computer and use it in GitHub Desktop.
import upperFirst from 'lodash/upperFirst';
import camelCase from 'lodash/camelCase';
export function toPascalCase(srcString: string): string {
return upperFirst(camelCase(srcString));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment