Class: FlexAttributes::IntegerConverter

Inherits:
Object
  • Object
show all
Defined in:
lib/flex_fields/converter/integer_converter.rb

Class Method Summary collapse

Class Method Details

.convert(val = nil) ⇒ Object



4
5
6
# File 'lib/flex_fields/converter/integer_converter.rb', line 4

def self.convert(val=nil)
  val.nil? ? nil : val.to_i
end