Sha256: 8dbf374e5d884cb70f76de59c19f3d88b05797fe18f4386a4c748bd159de3466
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 # Upper: Upper case the characters in the given 'string' class Upper < Handlebarsjs::BaseHelper register_cmdlet(Cmdlet::Case::Upper) def to_proc ->(value, _opts) { wrapper(cmdlet.call(value)) } end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems