All files / 1_Branch/0_Normal ConditionalOperator.js

100% Statements 2/2
50% Branches 2/4
100% Functions 1/1
100% Lines 2/2
1 2 3 4  1x 1x  
export default function() {
  const foo = true ? "foo" : false;
  const bar = false ? true : "bar";
};