When using this project i found i had to debug because all the implicit global variables you use clash with the use strict directive. Fixing it was easy enough: i just added var in front of every single implicit global variable declaration. I could have used let also, but wanted to stick close to your code style for legibility reasons.
When using this project i found i had to debug because all the implicit global variables you use clash with the use strict directive. Fixing it was easy enough: i just added var in front of every single implicit global variable declaration. I could have used let also, but wanted to stick close to your code style for legibility reasons.