constant.js 351 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Constant = void 0;
  4. /**
  5. * Extract a column of data filled with the specified constant.
  6. */
  7. const Constant = ({ value }) => {
  8. return (data) => data.map(() => value);
  9. };
  10. exports.Constant = Constant;
  11. exports.Constant.props = {};
  12. //# sourceMappingURL=constant.js.map