- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
18 lines
522 B
JavaScript
18 lines
522 B
JavaScript
'use strict';
|
|
|
|
var shorthandSetter = require('../parsers').shorthandSetter;
|
|
var shorthandGetter = require('../parsers').shorthandGetter;
|
|
|
|
var shorthand_for = {
|
|
'border-bottom-width': require('./borderBottomWidth'),
|
|
'border-bottom-style': require('./borderBottomStyle'),
|
|
'border-bottom-color': require('./borderBottomColor'),
|
|
};
|
|
|
|
module.exports.definition = {
|
|
set: shorthandSetter('border-bottom', shorthand_for),
|
|
get: shorthandGetter('border-bottom', shorthand_for),
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|