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

11 lines
233 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
/**
* Check whether a property is a $-variable
*
* @param {string} property
* @return {boolean} If `true`, property is a $-variable
*/
module.exports = function isDollarVariable(property) {
return property.startsWith('$');
};