Passed
Pull Request — master (#28)
by Inumidun
01:30
created

index.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 11
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 0
c 2
b 0
f 1
nc 1
dl 0
loc 11
rs 10
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
const ReactRaise = require('./lib/ReactRaise');
2
const speak = require('./lib/speak');
3
4
speak('React Raise', 'figlet');
5
speak(
6
  'Setup Information\n\tPlease answer the questions below to setup your app'
7
);
8
9
const app = new ReactRaise();
10
11
app.init();
12