class RuboCop::Cop::Style::TernaryCorrector

def extract_branches(node)

def extract_branches(node)
  *_var, rhs = *node
  condition, = *rhs if rhs.begin_type? && rhs.children.one?
  _condition, if_branch, else_branch = *(condition || rhs)
  [if_branch, else_branch]
end