Sha256: 0ea191a97d8fd5cfc018b24332ae645e449ec6d508e996bae33a0b5dc76468f8
Contents?: true
Size: 414 Bytes
Versions: 24
Compression:
Stored size: 414 Bytes
Contents
# frozen_string_literal: true module Handlebarsjs module Helpers # Tokenize and apply case and/or separator module Case # Camel: Camel case the characters in the given 'string' class Camel < Handlebarsjs::BaseHelper register_cmdlet(Cmdlet::Case::Camel) def to_proc ->(value, _opts) { wrapper(cmdlet.call(value)) } end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems