mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
'use strict';
|
|
|
|
module.exports.definition = {
|
|
set: function (v) {
|
|
this._setProperty('border-top-right-radius', v);
|
|
},
|
|
get: function () {
|
|
return this.getPropertyValue('border-top-right-radius');
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
};
|