Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/left_pad/ext/string.rb

Instance Method Summary collapse

Instance Method Details

#leftpad(length, char = ' ') ⇒ Object



2
3
4
# File 'lib/left_pad/ext/string.rb', line 2

def leftpad(length, char = ' ')
  self.rjust(length, String(char))
end