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