MCPcopy Index your code
hub / github.com/SuperMap/iClient-JavaScript / extend

Function extend

libs/echarts/echarts-en.simple.js:412–419  ·  view source on GitHub ↗

* @param {*} target * @param {*} source * @memberOf module:zrender/core/util

(target, source)

Source from the content-addressed store, hash-verified

410 * @memberOf module:zrender/core/util
411 */
412function extend(target, source) {
413 for (var key in source) {
414 if (source.hasOwnProperty(key)) {
415 target[key] = source[key];
416 }
417 }
418 return target;
419}
420
421/**
422 * @param {*} target

Callers 15

prepareTruncateOptionsFunction · 0.70
PainterFunction · 0.70
enableClassExtendFunction · 0.70
modifyLabelStyleFunction · 0.70
setTextStyleFunction · 0.70
getAnimatablePropsFunction · 0.70
createIconFunction · 0.70
visitComponentFunction · 0.70
DefaultDataProviderFunction · 0.70
parseAttributesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected