Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 23 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | var defaults = { |
||
2 | width: 2, |
||
3 | height: 100, |
||
4 | format: "auto", |
||
5 | displayValue: true, |
||
6 | fontOptions: "", |
||
7 | font: "monospace", |
||
8 | text: undefined, |
||
9 | textAlign: "center", |
||
10 | textPosition: "bottom", |
||
11 | textMargin: 2, |
||
12 | fontSize: 20, |
||
13 | background: "#ffffff", |
||
14 | lineColor: "#000000", |
||
15 | margin: 10, |
||
16 | marginTop: undefined, |
||
17 | marginBottom: undefined, |
||
18 | marginLeft: undefined, |
||
19 | marginRight: undefined, |
||
20 | valid: function(){} |
||
21 | }; |
||
22 | |||
23 | export default defaults; |
||
24 |