summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/util/string.rb
blob: 8def6e5b8a3cfc671c570f81f79c9f49e52dfc46 (plain)
1
2
3
4
5
6
7
unless String.method_defined? :prepend
  class String
    def prepend(other_str)
      insert(0, other_str)
    end
  end
end