Class: Handlebarsjs::Helpers::Comparison::And
- Inherits:
-
BaseHelper
- Object
- BaseHelper
- Handlebarsjs::Helpers::Comparison::And
- Defined in:
- lib/handlebarsjs/helpers/comparison/and.rb
Overview
And: Return true if **all of** the given values are truthy.
Instance Attribute Summary
Attributes inherited from BaseHelper
#block, #cmdlet, #parameter_names, #safe
Instance Method Summary collapse
Methods inherited from BaseHelper
#initialize, register_cmdlet, #wrapper
Constructor Details
This class inherits a constructor from Handlebarsjs::BaseHelper
Instance Method Details
#to_proc ⇒ Object
11 12 13 |
# File 'lib/handlebarsjs/helpers/comparison/and.rb', line 11 def to_proc ->(*values, _opts) { wrapper(cmdlet.call(*values)) } end |