Sha256: 3fdf02c7608b948800bf8d9c38ea55940077718bf6f30273ad627c0d14ec93f6
Contents?: true
Size: 473 Bytes
Versions: 20
Compression:
Stored size: 473 Bytes
Contents
'use strict'; var isValid = require('./borderStyle').isValid; module.exports.isValid = isValid; module.exports.definition = { set: function(v) { if (isValid(v)) { if (v.toLowerCase() === 'none') { v = ''; this.removeProperty('border-right-width'); } this._setProperty('border-right-style', v); } }, get: function() { return this.getPropertyValue('border-right-style'); }, enumerable: true, configurable: true, };
Version data entries
20 entries across 20 versions & 1 rubygems