Skip to content

Instantly share code, notes, and snippets.

@avoidwork
Last active November 28, 2021 00:36
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 avoidwork/760ef9c6a41bca9cb24490ef88c22ec5 to your computer and use it in GitHub Desktop.
Save avoidwork/760ef9c6a41bca9cb24490ef88c22ec5 to your computer and use it in GitHub Desktop.
hyphenize.js
function hyphenize (arg = '') {
return arg.match(/([a-z]{1,2})/ig).join('-');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment