10 lines
171 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
# Utility method extensions for String
class String
def undent
gsub(/^.{#{(slice(/^ +/) || '').length}}/, "")
end
end