UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

9 lines (8 loc) 192 B
/** * Check whether a property is a custom one * @param {string} property * @returns {boolean} */ export default function isCustomProperty(property) { return property.startsWith('--'); }