Update the readme

- Change var to const in the usage guidelines.
This commit is contained in:
David McCanney
2018-09-28 21:40:14 +01:00
parent 47c42ff4a5
commit deb7b6892c

View File

@@ -20,7 +20,7 @@ Flickr short URL is: `http://flic.kr/p/brXijP`
## Usage
```javascript
var Base58 = require('base58');
const Base58 = require('base58');
Base58.encode(6857269519); // 'brXijP'
Base58.decode('brXijP'); // 6857269519
```