fac-17 / week-7-langs

Week 7 Group
https://lang-week7.herokuapp.com/
0 stars 4 forks source link

Unused imports and variables #23

Open crianonim opened 5 years ago

crianonim commented 5 years ago

For example in the file handlers.js:

const jwt = require("jsonwebtoken");
const cookie = require("cookie");
const bcrypt = require("bcryptjs");
const querystring = require("querystring");

None of the above was used.

samjam48 commented 5 years ago

Same in router.js

const fs = require("fs");
const path = require("path");
const url = require("url");