QuackatronHQ / Gigarepo

Found unreachable code JS-0025
Performance
Major
a month ago2 years old
Unreachable code
 57  // <- default params should come last
 58  response.status(code);
 59  return response.end();
 60  return true; // unreachable code 61}
 62
 63// unsafe permissions
30
31    if (staticData.data) {
32      return staticData.data.toString();
33      return "static data not found";34    }
35    if (staticData) {
36      return staticData.data;