7 lines
132 B
Ruby
7 lines
132 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ServiceHelper
|
|
def formatted_horaires(horaires)
|
|
horaires.sub(/\S/, &:downcase)
|
|
end
|
|
end
|