JuanVqz/doctors

View on GitHub
app/helpers/hospitals_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module HospitalsHelper
  def tags_spliter(hospital)
    return [] if hospital.tags.nil?

    hospital.tags.split(',')
  end
end