MCPcopy Create free account
hub / github.com/nodejs/node / merge

Function merge

deps/v8/test/wasm-js/third_party/testharness.js:3610–3621  ·  view source on GitHub ↗
(a,b)

Source from the content-addressed store, hash-verified

3608 }
3609
3610 function merge(a,b)
3611 {
3612 var rv = {};
3613 var p;
3614 for (p in a) {
3615 rv[p] = a[p];
3616 }
3617 for (p in b) {
3618 rv[p] = b[p];
3619 }
3620 return rv;
3621 }
3622
3623 function expose(object, name)
3624 {

Callers 2

testharness.jsFile · 0.70
make_messageFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected