MCPcopy Index your code
hub / github.com/nodejs/node / s

Function s

deps/v8/test/mjsunit/apply.js:102–108  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

100assertEquals("42foofishhorse", f.apply(this, arr), "apply to this");
101
102function s() {
103 var doo = this;
104 for (var i = 0; i < arguments.length; i++) {
105 doo += arguments[i];
106 }
107 return doo;
108}
109
110assertEquals("bar42foofishhorse", s.apply("bar", arr), "apply to string");
111

Callers 3

basicTestFunction · 0.70
function-bind.jsFile · 0.70
formatPropertyFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected