UNPKG

stylelint

Version:

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

10 lines (9 loc) 206 B
/** * Normalize a combinator's whitespace to a single space. * * @param {string} value * @returns {string} */ export default function normalizeCombinator(value) { return value.replace(/\s+/g, ' '); }