Files
szjs/node_modules/stylelint/lib/utils/createMapWithSet.mjs

20 lines
433 B
JavaScript
Raw Normal View History

2025-03-07 22:27:18 +08:00
/**
* Create a map with unique sets of values from a record.
*
* @template T
* @param {Record<string, T | T[]>} record
* @returns {Map<string, Set<T>>}
*/
export default function createMapWithSet(record) {
/** @type {Map<string, Set<T>>} */
const map = new Map();
for (const [key, value] of Object.entries(record)) {
const list = Array.isArray(value) ? value : [value];
map.set(key, new Set(list));
}
return map;
}