cryptocoinjs / bs58

Base58 encoding/decoding for Bitcoin
http://cryptocoinjs.com/modules/misc/bs58/
MIT License
216 stars 48 forks source link

Use const instead of var #37

Closed sonicdoe closed 5 years ago

sonicdoe commented 5 years ago

Use const instead of var to conform to the no-var ESLint rule which is coming in a future version of JavaScript Standard Style. See https://github.com/standard/eslint-config-standard/pull/152.

jprichardson commented 5 years ago

Thank you.