Skip to content

Instantly share code, notes, and snippets.

@Asbra
Last active June 8, 2017 02:05
Show Gist options
  • Save Asbra/35314d35950cd780577cee2abc53c0ba to your computer and use it in GitHub Desktop.
Save Asbra/35314d35950cd780577cee2abc53c0ba to your computer and use it in GitHub Desktop.
Base36 string encoder/decoder
function decode(encoded) {
return parseInt(encoded, 36);
}
function encode(decoded) {
return Number(decoded).toString(36);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment