UNPKG

@infect/infect-rda-sample-storage

Version:

INFECT Sample Storage for RDA

12 lines (7 loc) 234 B
import Comparator from './Comparator.js'; export default class SmallerThanComparator extends Comparator { static name = 'smaller-than'; compare(modelFieldValue) { return modelFieldValue < this.filterValue; } }