all files / src/ index.js

84.62% Statements 11/13
83.33% Branches 5/6
50% Functions 1/2
77.78% Lines 7/9
1 branch Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                          
import core from './core';
import components from './components';
 
console.log('hi');
 
function f () {
  return 0;
}
 
Iif (false) {
  console.log('yay');
}
 
export default {
  core,
  components
};