MCPcopy
hub / github.com/scutan90/DeepLearning-500-questions / merge

Function merge

docsify.js:1971–1986  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

1969 noop.exec = noop;
1970
1971 function merge(obj) {
1972 var i = 1,
1973 target,
1974 key;
1975
1976 for (; i < arguments.length; i++) {
1977 target = arguments[i];
1978 for (key in target) {
1979 if (Object.prototype.hasOwnProperty.call(target, key)) {
1980 obj[key] = target[key];
1981 }
1982 }
1983 }
1984
1985 return obj;
1986 }
1987
1988 function splitCells(tableRow, count) {
1989 var cells = tableRow.replace(/([^\\])\|/g, '$1 |').split(/ +\| */),

Callers 5

configFunction · 0.85
docsify.jsFile · 0.85
markedFunction · 0.85
CompilerFunction · 0.85
prerenderEmbedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected