Skip to content

Instantly share code, notes, and snippets.

@szmeku
Created November 23, 2014 10:22
Show Gist options
  • Save szmeku/afc5ce52e02562d67071 to your computer and use it in GitHub Desktop.
Save szmeku/afc5ce52e02562d67071 to your computer and use it in GitHub Desktop.
function f(arg){
var rest = arg.slice(2).length == 0 ? '' : ',' + f(arg.slice(2));
return parseInt(arg.slice(0,2),16) + rest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment