Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 20 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
12 | import "@babel/register"; |
||
13 | import "webpack-hot-middleware/client?reload=true"; |
||
14 | import "./index.html"; |
||
15 | |||
16 | import UserInterface from './UserInterface'; |
||
17 | |||
18 | /** |
||
19 | * Venus Object |
||
20 | */ |
||
21 | export default class Venus extends Object { |
||
22 | |||
23 | /** |
||
24 | * Venus.constructor |
||
25 | */ |
||
26 | constructor() { |
||
27 | this.userInterface = new UserInterface; |
||
28 | } |
||
29 | } |
||
30 | |||
31 | module.exports = new Venus; |
||
32 |