CSSStyleDeclaration

style.prop()

// ⭐️ style.prop(propName[,val])
//
//    get: 
//      • style.paddingLeft                 // get DOM style prop
//      • style.prop('padding-left')        // get CSS prop ⭐️
//      • style.prop('--css-var')           // get CSS var ⭐️
//      
//    set: 
//      • style.prop('padding-left', '8px') // set CSS prop ⭐️
//      • style.prop('--css-var', '4px')    // set CSS var ⭐️
//      • style.paddingLeft = '8px'         // set DOM style prop
CSSStyleDeclaration.prototype.prop = function(propName, val=undefined){
  
    const camelCase = !propName.includes('-');
  
    // set prop if necessary
    if (val) {
      if (camelCase) this[propName] = val; // this.propName = val
      else this.setProperty(propName, val);// this.setProp('prop-name', val)
    }
  
    // return prop value
    return camelCase 
      ? this[propName]                    // this.propName
      : this.getPropertyValue(propName);  // this.getProp('prop-name') 
};

Last updated