Make `Formatter::Util` extend itself for easier access

This commit is contained in:
Sijawusz Pur Rahnama 2023-11-05 06:08:40 +01:00
parent 3d3626accc
commit 1b57e2cad5
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,7 @@
module Ameba::Formatter
module Util
extend self
def deansify(message : String?) : String?
message.try &.gsub(/\x1b[^m]*m/, "").presence
end