UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

10 lines 262 B
import { identity } from '../utils/helper'; /** * Connector transfom by function. */ export const Custom = (options) => { const { callback = identity } = options; return (data) => callback(data); }; Custom.props = {}; //# sourceMappingURL=custom.js.map