UNPKG

@infect/infect-rda-sample-storage

Version:

INFECT Sample Storage for RDA

13 lines (7 loc) 235 B
import Comparator from './Comparator.js'; export default class GreaterThanComparator extends Comparator { static name = 'greater-than'; compare(modelFieldValue) { return modelFieldValue > this.filterValue; } }