mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
/**
|
|
* Unite two or more sets
|
|
*
|
|
* @param {Iterable<string>[]} args
|
|
* @see {@link https://github.com/microsoft/TypeScript/issues/57228|GitHub}
|
|
*/
|
|
export default function uniteSets(...args) {
|
|
return new Set([...args].reduce((result, set) => [...result, ...set], []));
|
|
}
|