5 lines
101 B
Ruby
5 lines
101 B
Ruby
module ServiceHelper
|
|
def formatted_horaires(horaires)
|
|
horaires.sub(/\S/, &:downcase)
|
|
end
|
|
end
|