lfender6445/auto_pilot

View on GitHub
lib/core/string.rb

Summary

Maintainability
A
0 mins
Test Coverage
class String
  def unindent
    gsub(/^#{self[/\A\s*/]}/, '')
  end
end