MCPcopy Index your code
hub / github.com/socketstream/socketstream / merge

Function merge

docs/js/marked.js:1002–1017  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

1000noop.exec = noop;
1001
1002function merge(obj) {
1003 var i = 1
1004 , target
1005 , key;
1006
1007 for (; i < arguments.length; i++) {
1008 target = arguments[i];
1009 for (key in target) {
1010 if (Object.prototype.hasOwnProperty.call(target, key)) {
1011 obj[key] = target[key];
1012 }
1013 }
1014 }
1015
1016 return obj;
1017}
1018
1019/**
1020 * Marked

Callers 3

cookie.jsFile · 0.85
marked.jsFile · 0.85
markedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected