Skip to content

Instantly share code, notes, and snippets.

@perfectmak
Created January 26, 2018 18:18
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 perfectmak/42baf6931e9dc4751f4f279118e8f4fa to your computer and use it in GitHub Desktop.
Save perfectmak/42baf6931e9dc4751f4f279118e8f4fa to your computer and use it in GitHub Desktop.
function quantize(k, colors) {
if (k > colors.length) {
throw Error(`K (${k}) is greater than colors (${colors.length}).`)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment