exceljs
Version:
Excel Workbook Manager - Read and Write xlsx and csv Files.
19 lines (17 loc) • 370 B
JavaScript
class DataValidations {
constructor(model) {
this.model = model || {};
}
add(address, validation) {
return this.model[address] = validation;
}
find(address) {
return this.model[address];
}
remove(address) {
this.model[address] = undefined;
}
}
module.exports = DataValidations;
//# sourceMappingURL=data-validations.js.map
;