v-wordpress-plugin-updater/node_modules/stylelint/lib/utils/isCustomProperty.mjs
2025-08-14 00:05:37 -04:00

8 lines
192 B
JavaScript

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