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