Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81145 views
1
'use strict';
2
3
var isValid = require('./borderWidth').isValid;
4
module.exports.isValid = isValid;
5
6
module.exports.definition = {
7
set: function (v) {
8
if (isValid(v)) {
9
this._setProperty('border-top-width', v);
10
}
11
},
12
get: function () {
13
return this.getPropertyValue('border-top-width');
14
},
15
enumerable: true,
16
configurable: true
17
};
18
19