-
Notifications
You must be signed in to change notification settings - Fork 225
Open
Labels
Description
Description
According to the docs, using var
is not recommended, unless it's necessary, It would be useful to replace var
in index.js
with let
or const
depending on their scope and usage. And also as it's less error-prone, this change can make the code more robust for the possible future code change.
Task
- Replace
var
withlet
orconst
inindex.js
file - Update
var
withlet
orconst
inREADME.md
file