module Leftpad
Constants
- VERSION
Public Instance Methods
leftpad(chars, filler = ' ')
click to toggle source
# File lib/leftpad.rb, line 4 def leftpad(chars, filler = ' ') self.rjust(chars, filler) end
# File lib/leftpad.rb, line 4 def leftpad(chars, filler = ' ') self.rjust(chars, filler) end