9
10// ToDO: Error handling
11
12exports.getUser = async (request, reply) => { 13 try {
14 const data = await userServices.getUserData(request.query.userid)
15 return data ? responseMsg(200, 'OK', 'User found successfully', data) : responseMsg(404, 'Not found', 'User not found', data)
18 }
19}
20
21exports.getUserAll = async (request, reply) => { 22 try {
23 return await userServices.getUserAll()
24 } catch (err) {
18 }
19}
20
21exports.getUserAll = async (request, reply) => { 22 try {
23 return await userServices.getUserAll()
24 } catch (err) {
26 }
27}
28
29exports.getUserById = async (request, reply) => { 30 try {
31 return await userServices.getUserById(request.params.id)
32 } catch (err) {
34 }
35}
36
37exports.createUser = async (request, reply) => { 38 const { name,username, email, password,role} = request.body
39 try {
40 const usermailDB = await userServices.getUserByEmail(email)
Found variables that are declared but not used anywhere.
NOTE: In browser applications, DeepSource recommends the use of ESModules over regular
text/javascript
scripts. Currently, we don't support variables that are not explicitly exported, and are injected into other scripts by being included in an HTML file
Unused variables are most often the result of incomplete refactoring. They can lead to confusing code and minor performance hitches.
NOTE: If you have intentionally left a variable unused, we suggest you to prefix the variable name with a _
to prevent them from being flagged by DeepSource.
// Write-only variables are not considered as used.
let y = 10;
y = 5;
// A variable that modifies only itself isn't considered used.
let z = 0;
z = z + 1;
// Unused argument
(function(x) {
return 5;
})();
// Unused recursive functions also raise this issue.
function fact(n) {
if (n < 2) return 1;
return n * fact(n - 1);
}
// When a function definition destructures an array,
// unused entries from the array also cause warnings.
function getY([x, y]) {
return y;
}
let x = 10;
alert(x);
((arg1) => {
return arg1;
})();
let myFunc;
myFunc = (n) => {
// this is legal
if (n < 0) myFunc();
};
// this is also considered legal
console.log(declaredLater);
var declaredLater;
// Only the second argument from the descructured array is used.
function getY([, y]) {
return y;
}