"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPrincipalGroupsQty = void 0;
const getPrincipalGroupsQty = (principal) => {
const groups = principal.split("-");
return groups.length;
};
exports.getPrincipalGroupsQty = getPrincipalGroupsQty;