UNPKG

stylelint-order

Version:

A collection of order related linting rules for Stylelint.

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