Sign in
◑
Theme
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
normalizeCombinator.mjs
blob: 3d56d7eab2e364fb73e3ad646d4e36b77b23591c [
file
]
/**
* Normalize a combinator's whitespace to a single space.
*
* @param {string} value
* @returns {string}
*/
export
default
function
normalizeCombinator
(
value
)
{
return
value
.
replace
(
/\s+/
g
,
' '
);
}