class Object

def eval_js(javascript)

def eval_js(javascript)
  V8::Context.open(:with => self) do |cxt|
    cxt.eval(javascript)
  end
end

def tap

def tap
  yield self
end