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