MoNoApps/remo

View on GitHub
api/response.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(com) {
  if(com && !com.pooling) {
    if(com.db) {
      com.etime = new Date().getTime();
      com.ttime = com.etime - com.stime;
      com.db.close();
    }
  }
};