data-provider-temporary
Version:
Library that helps with server-to-client synchronization of data
14 lines (11 loc) • 343 B
JavaScript
;
var margin = require('./margin.js');
var parsers = require('../parsers.js');
module.exports.definition = {
set: parsers.subImplicitSetter('margin', 'bottom', margin.isValid, margin.parser),
get: function () {
return this.getPropertyValue('margin-bottom');
},
enumerable: true,
configurable: true
};