Method: TTY::Table::Field#extract_options
- Defined in:
- lib/tty/table/field.rb
permalink #extract_options(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Extract options and set value
67 68 69 70 71 72 73 74 75 |
# File 'lib/tty/table/field.rb', line 67 def (value) if value.is_a?(Hash) = value value = .fetch(:value) else = {} end [value, ] end |