आपको कॉलबैक फ़ंक्शन की आवश्यकता है क्योंकि यह एक async अनुरोध है:
function authenticate(accesskey, callback) {
var auth = null;
userModel.findOne({'uid': accesskey}, function(err, user) {
console.log("TRY AUTHENTICATE");
if (err) {
console.error("Can't Find.!! Error");
}
//None Found
if (user === null) {
console.error("ACCESS ERROR : %s Doesn't Exist", accesskey);
auth = false;
} else {
console.log(user);
auth = true;
}
callback(auth);
});
}
और इस फ़ंक्शन को इस तरह कॉल करें:
authenticate("key", function (authResult) {
//do whatever
});