muse-dl/src/util.cr

9 lines
174 B
Crystal
Raw Normal View History

2020-03-29 14:04:51 +00:00
module Muse::Dl
class Util
# Generates a safe filename
def self.slug_filename(input : String)
input.strip.tr("\u{202E}%$|:;/\t\r\n\\", "-")
end
end
end