From deb7b6892c1209814e9aa78c294a985facc0e902 Mon Sep 17 00:00:00 2001 From: David McCanney <38220805+mccanney@users.noreply.github.com> Date: Fri, 28 Sep 2018 21:40:14 +0100 Subject: [PATCH] Update the readme - Change var to const in the usage guidelines. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66dd15c..0d5544a 100644 --- a/README.md +++ b/README.md @@ -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 ```