Skip to content

Instantly share code, notes, and snippets.

@jorinvo
Last active August 29, 2015 14:14
Show Gist options
  • Save jorinvo/2dd066482042162c4d45 to your computer and use it in GitHub Desktop.
Save jorinvo/2dd066482042162c4d45 to your computer and use it in GitHub Desktop.
Declare functions in order of importance
var upDown = function(name) {
return up(name) + '-' + down(name)
}
var up = function(s) {
return s.toUpperCase()
}
var down = function(s) {
return s.toLowerCase()
}
module.exports = upDown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment