Method: Cloudinary::Utils.as_safe_bool

Defined in:
lib/cloudinary/utils.rb

.as_safe_bool(value) ⇒ Object



1032
1033
1034
1035
1036
1037
1038
# File 'lib/cloudinary/utils.rb', line 1032

def self.as_safe_bool(value)
  case as_bool(value)
  when nil then nil
  when TrueClass then 1
  when FalseClass then 0
  end
end