Sign in
chromium
/
devtools
/
devtools-frontend
/
0a3621c
/
.
/
node_modules
/
stylelint
/
lib
/
reference
/
punctuationSets.js
blob: a9a525282af5c3c0b4fe5396a1109af6da6faf89 [
file
]
'use strict'
;
const
punctuationSets
=
{};
punctuationSets
.
mediaFeaturePunctuation
=
new
Set
([
':'
,
'='
,
'>'
,
'>='
,
'<'
,
'<='
]);
punctuationSets
.
nonSpaceCombinators
=
new
Set
([
'>'
,
'+'
,
'~'
,
'>>>'
,
'/deep/'
]);
module
.
exports
=
punctuationSets
;