Skip to content

Instantly share code, notes, and snippets.

@yamadapc
Created February 6, 2014 22:43
Show Gist options
  • Save yamadapc/8853988 to your computer and use it in GitHub Desktop.
Save yamadapc/8853988 to your computer and use it in GitHub Desktop.
'use strict';
module.exports = function toUnderscore(s) {
return (s.charAt(0) + s.slice(1).replace(/[A-Z]/g, '-$&')).toLowerCase()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment