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

Function retrieve

libs/echarts/echarts.simple.js:745–751  ·  view source on GitHub ↗

* If value1 is not null, then return value1, otherwise judget rest of values. * Low performance. * @memberOf module:zrender/core/util * @return {*} Final value

(values)

Source from the content-addressed store, hash-verified

743 * @return {*} Final value
744 */
745function retrieve(values) {
746 for (var i = 0, len = arguments.length; i < len; i++) {
747 if (arguments[i] != null) {
748 return arguments[i];
749 }
750 }
751}
752
753function retrieve2(value0, value1) {
754 return value0 != null

Callers 4

echarts.simple.jsFile · 0.70
findAxesModelsFunction · 0.70
buildAxisLabelFunction · 0.70
layout$1Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected