Method: String#to_b

Defined in:
lib/stbaldricks/patches/string.rb

#to_bObject



49
50
51
52
53
54
# File 'lib/stbaldricks/patches/string.rb', line 49

def to_b
  return false if self == 'false' || self == '0'
  return true if self == 'true' || self == '1'

  nil
end