MoNoApps/remo

View on GitHub
api/closeDB.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(db, cb) {
  try{ db.close(cb); }
  catch(e){ cb(e);}
};