UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

9 lines (8 loc) 197 B
/** * Unite two or more sets * * @param {Iterable<string>[]} args */ export default function uniteSets(...args) { return new Set([...args].reduce((result, set) => [...result, ...set], [])); }