module Dry::CLI::Inflector

def self.dasherize(input)

Other tags:
    Since: - 0.5.0

Other tags:
    Api: - private
def self.dasherize(input)
  return nil unless input
  input.to_s.downcase.gsub(/[[[:space:]]_]/, "-")
end