node_modules/cssstyle/lib/properties/bottom.js

Maintainability

93.42

Lines of code

14

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 93.42

Created with Raphaël 2.1.0051015202015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 14

Difficulty

5.78

Estimated Errors

0.07

Function weight

By Complexity

Created with Raphaël 2.1.0set1

By SLOC

Created with Raphaël 2.1.0set3
1
'use strict';
Column: 1 "Use the function form of "use strict"."
2
 
3
var parseMeasurement = require('../parsers').parseMeasurement;
Column: 24 "'require' is not defined."
4
 
5
module.exports.definition = {
Column: 1 "'module' is not defined."
6
    set: function (v) {
7
        this._setProperty('bottom', parseMeasurement(v));
8
    },
9
    get: function () {
10
        return this.getPropertyValue('bottom');
11
    },
12
    enumerable: true,
13
    configurable: true
14
};