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 15 | 3x 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 }; |