| 123456789101112 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Constant = void 0;
- /**
- * Extract a column of data filled with the specified constant.
- */
- const Constant = ({ value }) => {
- return (data) => data.map(() => value);
- };
- exports.Constant = Constant;
- exports.Constant.props = {};
- //# sourceMappingURL=constant.js.map
|