mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 22:06:36 -06:00
5 lines
87 B
Ruby
5 lines
87 B
Ruby
class String
|
|
def undent
|
|
gsub(/^.{#{(slice(/^ +/) || '').length}}/, '')
|
|
end
|
|
end
|