isCustomProperty.js 234 B

12345678910
  1. /**
  2. * Check whether a property is a custom one
  3. *
  4. * @param {string} property
  5. * @return {boolean} If `true`, property is a custom one
  6. */
  7. module.exports = function isCustomProperty(property) {
  8. return property.startsWith('--');
  9. };