Module: Leftpad

Included in:
String
Defined in:
lib/leftpad.rb,
lib/leftpad/version.rb

Constant Summary collapse

VERSION =
"1.2.2"

Instance Method Summary collapse

Instance Method Details

#leftpad(chars, filler = ' ') ⇒ Object



4
5
6
# File 'lib/leftpad.rb', line 4

def leftpad(chars, filler = ' ')
  self.rjust(chars, filler)
end