Returns:
17 18 19
# File 'lib/rack/param.rb', line 17 def falsey? (/^(false|f|no|n|0|off)$/ =~ downcase) != nil end
13 14 15
# File 'lib/rack/param.rb', line 13 def truthy? (/^(true|t|yes|y|1|on)$/ =~ downcase) != nil end