blob: 8b591694408904a4368e922a525dbc3ee0f3e05c [file] [log] [blame]
/**
* Check whether a property is a custom one
* @param {string} property
* @returns {boolean}
*/
export default function isCustomProperty(property) {
return property.startsWith('--');
}