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

Function defaults

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

* @param {*} target * @param {*} source * @param {boolean} [overlay=false] * @memberOf module:zrender/core/util

(target, source, overlay)

Source from the content-addressed store, hash-verified

425 * @memberOf module:zrender/core/util
426 */
427function defaults(target, source, overlay) {
428 for (var key in source) {
429 if (source.hasOwnProperty(key)
430 && (overlay ? source[key] != null : target[key] == null)
431 ) {
432 target[key] = source[key];
433 }
434 }
435 return target;
436}
437
438var createCanvas = function () {
439 return methods.createCanvas();

Callers 13

mixinFunction · 0.70
createIconFunction · 0.70
convertNormalEmphasisFunction · 0.70
loadingDefaultFunction · 0.70
inheritStyleFunction · 0.70
doDispatchActionFunction · 0.70
completeDimensionsFunction · 0.70
AxisBuilderFunction · 0.70
buildAxisMajorTicksFunction · 0.70
buildAxisMinorTicksFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected