epiphany/node_modules/stylelint-order/utils/isCustomProperty.js
2023-12-09 22:48:07 -08:00

10 lines
234 B
JavaScript

/**
* Check whether a property is a custom one
*
* @param {string} property
* @return {boolean} If `true`, property is a custom one
*/
module.exports = function isCustomProperty(property) {
return property.startsWith('--');
};