Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
isCustomSelector.mjs
blob: 306f224a31cf46d051b60afe51b827c3a08ac2a9 [
file
] [
log
] [
blame
]
/**
* Check whether a selector is a custom one
*
* @param {string} selector
* @returns {boolean}
*/
export
default
function
isCustomSelector
(
selector
)
{
return
selector
.
startsWith
(
':--'
);
}