UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

8 lines 198 B
/** * Extract a column of data with specified field. */ export const Field = ({ value }) => { return (data) => data.map((d) => d[value]); }; Field.props = {}; //# sourceMappingURL=field.js.map