Skip to content

Instantly share code, notes, and snippets.

@HuangXiZhou
Created February 20, 2019 15:22
Show Gist options
  • Save HuangXiZhou/caca634ac92f9f88aeaf604ef0924cc7 to your computer and use it in GitHub Desktop.
Save HuangXiZhou/caca634ac92f9f88aeaf604ef0924cc7 to your computer and use it in GitHub Desktop.
toUnderscore
function toUnderscore(string) {
return string.toString().split(/(?=[A-Z])/).join('_').toLowerCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment