Sha256: b4d07352f6a6397424d974fbf7bd0e859b4665aafd18db32a8cb89596c049c02

Contents?: true

Size: 438 Bytes

Versions: 24

Compression:

Stored size: 438 Bytes

Contents

# frozen_string_literal: true

module Handlebarsjs
  module Helpers
    # Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc.
    module Comparison
      # Or: Return true if any value is truthy.
      class Or < Handlebarsjs::BaseHelper
        register_cmdlet(Cmdlet::Comparison::Or)

        def to_proc
          ->(*values, _opts) { wrapper(cmdlet.call(*values)) }
        end
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
handlebarsjs-0.14.2 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.14.1 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.14.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.13.1 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.13.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.12.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.11.3 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.11.2 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.11.1 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.11.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.10.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.9.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.8.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.7.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.6.3 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.6.2 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.6.1 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.6.0 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.5.7 lib/handlebarsjs/helpers/comparison/or.rb
handlebarsjs-0.5.6 lib/handlebarsjs/helpers/comparison/or.rb