constant.js 217 B

12345678
  1. /**
  2. * Extract a column of data filled with the specified constant.
  3. */
  4. export const Constant = ({ value }) => {
  5. return (data) => data.map(() => value);
  6. };
  7. Constant.props = {};
  8. //# sourceMappingURL=constant.js.map