summaryrefslogtreecommitdiff
path: root/school/node_modules/cssstyle/lib/properties/right.js
blob: eb4c3d49619b631488eafdcf68abd660d5b5de04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

var parseMeasurement = require('../parsers').parseMeasurement;

module.exports.definition = {
  set: function(v) {
    this._setProperty('right', parseMeasurement(v));
  },
  get: function() {
    return this.getPropertyValue('right');
  },
  enumerable: true,
  configurable: true,
};