Method: Object#tap

Defined in:
lib/less.rb

#tap {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (Object)

    the object that the method was called on



59
60
61
62
# File 'lib/less.rb', line 59

def tap
  yield self
  self
end