4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-08 05:26:56 +00:00
setup-helm/node_modules/cssstyle/lib/properties/marginBottom.js
2022-06-27 14:17:15 -04:00

13 lines
329 B
JavaScript

'use strict';
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,
};