is-user
v1.4.1
Published
[![travis build](https://img.shields.io/travis/manishsaraan/is-user.svg?style=flat-square)](https://travis-ci.org/manishsaraan/is-user) [![version](https://img.shields.io/npm/v/is-user.svg?style=flat-square)]((http://npm.im/is-user)) [![MIT License](htt
Downloads
5
Maintainers
Readme
Is-User
#An utility to check if a role is assigned to an user.
#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
}