ka-table
Version:
The customizable, extendable, lightweight, and fully free React Table Component
11 lines (10 loc) • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getValidationValue = void 0;
var getValidationValue = function (value, rowData, column, validation) {
if (validation) {
return validation({ value: value, rowData: rowData, column: column });
}
return undefined;
};
exports.getValidationValue = getValidationValue;