Sign in
chromium
/
devtools
/
devtools-frontend
/
0a3621c
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
isCustomProperty.js
blob: fcc6cb05f7a9d9f2aceca1227c30c1ee8e1ff1f8 [
file
]
'use strict'
;
/**
* Check whether a property is a custom one
* @param {string} property
* @returns {boolean}
*/
module
.
exports
=
function
(
property
)
{
return
property
.
startsWith
(
'--'
);
};