Files
metasploit-gs/lib/msf/ui/console/table_print/blank_formatter.rb
T
2023-11-30 16:32:29 +00:00

18 lines
261 B
Ruby

# -*- coding: binary -*-
module Msf
module Ui
module Console
module TablePrint
class BlankFormatter
def format(value)
return '.' if value.blank?
value
end
end
end
end
end
end