UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

8 lines 217 B
/** * Extract a column of data filled with the specified constant. */ export const Constant = ({ value }) => { return (data) => data.map(() => value); }; Constant.props = {}; //# sourceMappingURL=constant.js.map