| Conditions | 5 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others |
||
| 8 | (function(mod) { |
||
| 9 | if (typeof exports == "object" && typeof module == "object") // CommonJS |
||
| 10 | mod(require("../../lib/codemirror")); |
||
| 11 | else if (typeof define == "function" && define.amd) // AMD |
||
|
|
|||
| 12 | define(["../../lib/codemirror"], mod); |
||
| 13 | else // Plain browser env |
||
| 14 | mod(CodeMirror); |
||
| 15 | })(function(CodeMirror) { |
||
| 16 | "use strict"; |
||
| 32 |
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.