Skip to content

Instantly share code, notes, and snippets.

@molarmanful
Last active July 4, 2016 16:08
Show Gist options
  • Save molarmanful/da91bb6ea2a16c337e5a to your computer and use it in GitHub Desktop.
Save molarmanful/da91bb6ea2a16c337e5a to your computer and use it in GitHub Desktop.
RGB2HEX - a golfed ES6 function that converts RGB values in the form of 'r g b'.
h=>'#'+h.split` `.map(x=>(x<16?0:'')+(x*1).toString(16)).join``
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment