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

Function bind

libs/echarts/echarts.simple.js:642–647  ·  view source on GitHub ↗

* @memberOf module:zrender/core/util * @param {Function} func * @param {*} context * @return {Function}

(func, context)

Source from the content-addressed store, hash-verified

640 * @return {Function}
641 */
642function bind(func, context) {
643 var args = nativeSlice.call(arguments, 2);
644 return function () {
645 return func.apply(context, args.concat(nativeSlice.call(arguments)));
646 };
647}
648
649/**
650 * @memberOf module:zrender/core/util

Callers 5

echarts.simple.jsFile · 0.70
ZRenderFunction · 0.70
ExtensionAPIFunction · 0.70
EChartsFunction · 0.70
createExtensionAPIFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected