6 lines
91 B
Ruby
6 lines
91 B
Ruby
class String
|
|
def undent
|
|
gsub(%r{^.{#{(slice(%r{^ +}) || '').length}}}, "")
|
|
end
|
|
end
|