You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
401 B
9 lines
401 B
|
4 months ago
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.getCallbackValue = getCallbackValue;
|
||
|
|
var tslib_1 = require("tslib");
|
||
|
|
var util_1 = require("@antv/util");
|
||
|
|
function getCallbackValue(value, params) {
|
||
|
|
return (0, util_1.isFunction)(value) ? value.apply(void 0, tslib_1.__spreadArray([], tslib_1.__read(params), false)) : value;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=callback.js.map
|