class Eskimo::ASCII::Strip

Remove surrounding whitespace.

Strip.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.rb, line 9
def render(**)
  super.strip
end