matkoniecz/CartoCSSHelper

View on GitHub
lib/cartocss_helper/util/filehelper.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module FileHelper
  def self.make_string_usable_as_filename(string)
    return string.gsub(/[\x00\/\\:\*\?\"<>\|]/, '_')
  end
end