Skip to content

Instantly share code, notes, and snippets.

@apaleslimghost
Created November 7, 2018 11:51
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 apaleslimghost/f916cb5b979458ae434576817763e1a1 to your computer and use it in GitHub Desktop.
Save apaleslimghost/f916cb5b979458ae434576817763e1a1 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
console.log(
Array.from(
process.argv.slice(2).join(' '),
c => c[Math.random() < 0.5 ? 'toUpperCase' : 'toLowerCase']()
).join('')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment