Skip to content

manishsaraan/is-user

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Is-User

#An utility to check if a role is assigned to an user.

travis build version MIT License XO code style

#How to use

const isUser = require('is-user');
export.update = function(req, res){

    //chaching the roles for future use in this function"
    const userArr = ['user', 'admin', 'manager', 'superadmin', 'ceo'];

    isUser.cache(userArr);
    
    let isAdmin =  isUser.is('admin'); //true
    let isManager = isUser.is('manager'); //true
}

About

Utility to check whether a role exists in array of roles.

Resources

License

Stars

Watchers

Forks

Packages

No packages published