MCPcopy Create free account
hub / github.com/SuperMap/iClient-JavaScript / mixin

Function mixin

libs/echarts/echarts.simple.js:504–509  ·  view source on GitHub ↗

* @memberOf module:zrender/core/util * @param {Object|Function} target * @param {Object|Function} sorce * @param {boolean} overlay

(target, source, overlay)

Source from the content-addressed store, hash-verified

502 * @param {boolean} overlay
503 */
504function mixin(target, source, overlay) {
505 target = 'prototype' in target ? target.prototype : target;
506 source = 'prototype' in source ? source.prototype : source;
507
508 defaults(target, source, overlay);
509}
510
511/**
512 * Consider typed array.

Callers 3

echarts.simple.jsFile · 0.70
ShapeClass · 0.50
GroupClass · 0.50

Calls 1

defaultsFunction · 0.70

Tested by

no test coverage detected