Skip to content

Instantly share code, notes, and snippets.

@Jungwoo-An
Last active September 4, 2018 10:08
Show Gist options
  • Save Jungwoo-An/4f14191b713497734395f24fccf4141a to your computer and use it in GitHub Desktop.
Save Jungwoo-An/4f14191b713497734395f24fccf4141a to your computer and use it in GitHub Desktop.
snake_case <-> camelCase
export function namingSnakeToCamel(text: string) {
return text.replace(/_(\w)/g, (match, target: string) => target.toUpperCase());
}
@Jungwoo-An
Copy link
Author

export function namingCamelToSnake(text: string) {
  return text.replace(/([A-Z])/g, (match, target: string) => `_${target.toLowerCase()}`);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment