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