UNPKG

mustbe

Version:

Authorization plumbing for Node+Express apps

10 lines (7 loc) 174 B
function UserIdentity(){ this.config = {}; } UserIdentity.prototype.isAuthenticated = function(cb){ this.config.isAuthenticated = cb; }; module.exports = UserIdentity;