All files / helpers/permissions index.js

100% Statements 12/12
100% Branches 8/8
100% Functions 2/2
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 153x 71x 68x 67x   3x 3x 2x 1x            
const check = (code, userPermissions, force) => {
  if (force) return true;
  if (userPermissions.includes(`${code}`)) return true;
  return false;
}
const returnByPermission = (code, userPermissions, anyValue, force) => {
  if (force) return anyValue;
  if (userPermissions.includes(`${code}`)) return anyValue;
  return false;
}
 
export default {
  check,
  returnByPermission
};