Sha256: 08d918ede5e8bdcee98963fd4f483ee89b932dc788db912df35e2d06166dee25
Contents?: true
Size: 439 Bytes
Versions: 28
Compression:
Stored size: 439 Bytes
Contents
# frozen_string_literal: true module Cmdlet # Tokenize and apply case and/or separator module Case # Upper: Upper case the characters in the given 'string' class Upper < Cmdlet::BaseCmdlet # # @param [String|Int] value - value - to be converted # @return [String] value converted to upper case def call(value) return '' if value.nil? value.upcase end end end end
Version data entries
28 entries across 28 versions & 1 rubygems