Created
November 11, 2020 18:19
-
-
Save valkheim/408c335eef78d3823c46ad74b1ec9f6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const hashCode = str => | |
_.reduce( | |
str, | |
(acc, c) => { | |
return (acc += c.charCodeAt(0)); // + ((acc << 5) - acc); | |
}, | |
0 | |
); | |
const intToRGB = i => { | |
const c = (i & 0x00ffffff).toString(16).toUpperCase(); | |
return "00000".substring(0, 6 - c.length) + c; | |
}; | |
export const colorize = str => "#" + intToRGB(hashCode(str)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment