Method: Array#format_output_prepare_bullet_detail

Defined in:
lib/format_output/bullets.rb

#format_output_prepare_bullet_detailObject

Get data ready for being in a bullet point.



36
37
38
39
40
41
42
# File 'lib/format_output/bullets.rb', line 36

def format_output_prepare_bullet_detail
  if length < 2
    ["*", self[0]]
  else
    self
  end
end