Total Complexity | 3 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 3 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | (function(wysihtml5) { |
||
2 | wysihtml5.commands.small = { |
||
3 | exec: function(composer, command) { |
||
4 | return wysihtml5.commands.formatInline.exec(composer, command, "small"); |
||
5 | }, |
||
6 | |||
7 | state: function(composer, command) { |
||
8 | return wysihtml5.commands.formatInline.state(composer, command, "small"); |
||
9 | } |
||
10 | }; |
||
11 | })(wysihtml5); |
||
|
|||
12 | |||
13 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.