securityos/node_modules/stylelint-order/utils/isCustomProperty.js

11 lines
234 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
/**
* 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('--');
};