UNPKG

stylelint-order

Version:

A collection of order related linting rules for Stylelint.

11 lines (9 loc) 222 B
/** * Check whether a property is a $-variable * * @param {string} property * @return {boolean} If `true`, property is a $-variable */ export function isDollarVariable(property) { return property.startsWith('$'); }