2018-11-08 15:54:46 +00:00

7 lines
126 B
Ruby

# Utility method extensions for String
class String
def undent
gsub(/^.{#{(slice(/^ +/) || '').length}}/, "")
end
end