2020-05-19 11:43:42 +03:00

11 lines
234 B
JavaScript

/**
* Check whether a property is a custom one
*
* @param {string} property
* @return {boolean} If `true`, property is a custom one
*/
module.exports = function isCustomProperty(property) {
return property.startsWith('--');
};