Class: Msf::Ui::Console::TablePrint::BlankFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/msf/ui/console/table_print/blank_formatter.rb

Instance Method Summary collapse

Instance Method Details

#format(value) ⇒ Object



8
9
10
11
12
# File 'lib/msf/ui/console/table_print/blank_formatter.rb', line 8

def format(value)
  return '.' if value.blank?

  value
end