Skip to content

Instantly share code, notes, and snippets.

@tmarshall
tmarshall / base58.js
Created May 10, 2020 02:28 — forked from inflammable/base58.js
Base58 (and other) Encoding and Decoding in Javascript
/*
* (c) 2012 inflammable/raromachine
* Licensed under the MIT License.
* ---
* this is a refactored version of https://gist.github.com/inflammable/2929362
*/
const alphabet = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ'
const base = alphabet.length