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

10 lines
233 B
JavaScript

/**
* 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('$');
};