UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

14 lines (11 loc) 303 B
"use strict"; /** * Unite two or more sets * * @param {Iterable<string>[]} args * @see {@link https://github.com/microsoft/TypeScript/issues/57228|GitHub} */ function uniteSets(...args) { return new Set([...args].reduce((result, set) => [...result, ...set], [])); } module.exports = uniteSets;