RyanMarcus / vulcan

A JavaScript propositional logic and resolution library
GNU Affero General Public License v3.0
58 stars 9 forks source link

Updated formatting; use `const` instead of `var` #5

Closed davidbarsky closed 8 years ago

RyanMarcus commented 8 years ago

While I agree that const should be used for such references, as the variable will never be changed, I'm worried that all of the examples in the NodeJS documentation use the old var declaration. I think it might be confusing.

davidbarsky commented 8 years ago

fair enough. i'll open a new pull request with the comments explaining const usage.