class Eskimo::ASCII::StripLeft
Remove whitespace from the beginning.
StripLeft.new { " hello world " } # => "hello world "
Public Instance Methods
render(**)
click to toggle source
Calls superclass method
Eskimo::ASCII::Component#render
# File lib/eskimo/ascii/components/strip_left.rb, line 9 def render(**) super.lstrip end