isCustomProperty.js 97 B

123
  1. module.exports = function isCustomProperty(property) {
  2. return property.slice(0, 2) === '--';
  3. };