class Dry::Inflector
def dasherize(input)
- Since: - 0.1.0
Returns:
-
(String)
- the dasherized string
Parameters:
-
input
(String, Symbol
) -- the input
def dasherize(input) input.to_s.tr("_", "-") end
(String)
- the dasherized string
input
(String, Symbol
)
-- the input
def dasherize(input) input.to_s.tr("_", "-") end