UNPKG

@udyux/stylelint-order

Version:

[fork] A collection of order related linting rules for stylelint.

11 lines (9 loc) 233 B
/** * 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('$'); };