Open crianonim opened 5 years ago
in handlers.js on line 69
dbUsernames = [];
You are probably wanting to declare it in the local scope with
const dbUsernames = [];
A linter would help you with that!
in handlers.js on line 69
You are probably wanting to declare it in the local scope with
A linter would help you with that!