Skip to content

Instantly share code, notes, and snippets.

@mhsattarian
Created October 15, 2024 13:53
Show Gist options
  • Save mhsattarian/0d10e397ca07a7bcce64ea72bcb66693 to your computer and use it in GitHub Desktop.
Save mhsattarian/0d10e397ca07a7bcce64ea72bcb66693 to your computer and use it in GitHub Desktop.
export const capitalize = (str?: string): string => {
if (!str) return '';
return str.charAt(0).toUpperCase() + (str.slice(1).toLowerCase() ?? '');
};
export const humanReadbleSlug = (str: string) =>
str.split('_').map(capitalize).join(' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment