Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created June 18, 2018 04:16
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 kunigami/06c3e9da9ad8e2008a19e62f9a138311 to your computer and use it in GitHub Desktop.
Save kunigami/06c3e9da9ad8e2008a19e62f9a138311 to your computer and use it in GitHub Desktop.
function normalize(s) {
s = s.toLowerCase();
s = s.trim();
s = s.replace(/\s/g, "_");
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment