Sha256: 0a689b052ca0cf65efbd489bb05416c36caf35a2ad83e2eefd96e52102a446fd

Contents?: true

Size: 721 Bytes

Versions: 6

Compression:

Stored size: 721 Bytes

Contents

'use strict';

var shorthandSetter = require('../parsers').shorthandSetter;
var shorthandGetter = require('../parsers').shorthandGetter;
var shorthandParser = require('../parsers').shorthandParser;

var shorthand_for = {
    'border-right-width': require('./borderRightWidth'),
    'border-right-style': require('./borderRightStyle'),
    'border-right-color': require('./borderRightColor')
};

var isValid = function isValid(v) {
    return shorthandParser(v, shorthand_for) !== undefined;
};
module.exports.isValid = isValid;

module.exports.definition = {
    set: shorthandSetter('border-right', shorthand_for),
    get: shorthandGetter('border-right', shorthand_for),
    enumerable: true,
    configurable: true
};

Version data entries

6 entries across 5 versions & 4 rubygems

Version Path
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/cssstyle/lib/properties/borderRight.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/cssstyle/lib/properties/borderRight.js
locomotivecms-3.4.0 app/javascript/node_modules/cssstyle/lib/properties/borderRight.js
locomotivecms-3.4.0 app/javascript/node_modules/jest-environment-jsdom/node_modules/cssstyle/lib/properties/borderRight.js
lanes-0.8.0 node_modules/cssstyle/lib/properties/borderRight.js
select_all-rails-0.3.1 node_modules/cssstyle/lib/properties/borderRight.js