transform.js 367 B

12345678910
  1. /**
  2. * Extract a column of data with specified map function from data.
  3. * Each datum in the array is not visual data by default.
  4. * Specifying identity scale for related channel explicitly will treat them as visual data.
  5. */
  6. export const Transform = ({ value }) => {
  7. return (data) => data.map(value);
  8. };
  9. Transform.props = {};
  10. //# sourceMappingURL=transform.js.map