Sha256: f2d1b5558b5949590b71f46fed81a0698d436616ff3b652d3062773affa745ee

Contents?: true

Size: 510 Bytes

Versions: 24

Compression:

Stored size: 510 Bytes

Contents

# frozen_string_literal: true

module Handlebarsjs
  module Helpers
    # Array handling routines, eg. join, join_prefix, join_post
    module Array
      # JoinPost: join an array of values with separator as a string and using the separator at the end of string
      class JoinPost < Handlebarsjs::BaseHelper
        register_cmdlet(Cmdlet::Array::JoinPost)

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

Version data entries

24 entries across 24 versions & 1 rubygems

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