Method: Vedeu::Common#truthy?
- Defined in:
- lib/vedeu/common.rb
#truthy?(value) ⇒ Boolean
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.
Returns a boolean indicating whether the value should be considered true.
160 161 162 |
# File 'lib/vedeu/common.rb', line 160 def truthy?(value) !falsy?(value) end |