mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-12-25 17:36:08 -07:00
17 lines
351 B
JavaScript
17 lines
351 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var isValid = (module.exports.isValid = require('./borderWidth').isValid);
|
||
|
|
||
|
module.exports.definition = {
|
||
|
set: function(v) {
|
||
|
if (isValid(v)) {
|
||
|
this._setProperty('border-right-width', v);
|
||
|
}
|
||
|
},
|
||
|
get: function() {
|
||
|
return this.getPropertyValue('border-right-width');
|
||
|
},
|
||
|
enumerable: true,
|
||
|
configurable: true,
|
||
|
};
|