d2-ui
Version:
42 lines (32 loc) • 1.65 kB
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
var auths = Symbol();
var UserAuthorities = (function () {
function UserAuthorities() {
var authorities = arguments.length <= 0 || arguments[0] === undefined ? [] : arguments[0];
_classCallCheck(this, UserAuthorities);
this[auths] = new Set(authorities);
}
_createClass(UserAuthorities, [{
key: 'has',
value: function has(authority) {
if (this[auths].has('ALL')) {
return true;
}
return this[auths].has(authority);
}
}], [{
key: 'create',
value: function create(authorities) {
return new UserAuthorities(authorities);
}
}]);
return UserAuthorities;
})();
exports['default'] = UserAuthorities;
module.exports = exports['default'];
//# sourceMappingURL=UserAuthorities.js.map
;