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