@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
11 lines (10 loc) • 373 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSortedHierarchyLevels = getSortedHierarchyLevels;
function getSortedHierarchyLevels(groups, order = 'ASC') {
const comparator = order === 'ASC'
? (a, b) => a - b
: (a, b) => b - a;
const levels = Array.from(groups.keys()).sort(comparator);
return levels;
}
;