📄 textUnderlineColor.js
/home/palash/git/site/node_modules/cssstyle/lib/properties/textUnderlineColor.js
Language: js • Lines: 14
'use strict';

var parseColor = require('../parsers').parseColor;

module.exports.definition = {
  set: function(v) {
    this._setProperty('text-underline-color', parseColor(v));
  },
  get: function() {
    return this.getPropertyValue('text-underline-color');
  },
  enumerable: true,
  configurable: true,
};