function DB() {
}
DB.prototype.add = function (req, res, next) {
Token.findOne({token: req.token}, function(err, token) {
.....
.....
})
}
DB.prototype.addToSource = function (req, res, next) {
Token.findOne({token: req.token}, function(err, token) {
.....
.....
})
}
// остальние методы
module.exports = new DB;
function DB() {
this.token = function(req) {
return Token.findOne({token: req.token}, function(err, token) {
.....
.....
})
}
}
DB.prototype.add = function (req, res, next) {
var token = this.token(req);
}
DB.prototype.addToSource = function (req, res, next) {
var token = this.token(req);
}
// остальние методы
module.exports = new DB;