UNPKG

@infect/infect-rda-sample-storage

Version:

INFECT Sample Storage for RDA

13 lines (7 loc) 243 B
import Comparator from './Comparator.js'; export default class AllOfComparator extends Comparator { static name = 'all-of'; compare(model, debug) { return this.children.every((child) => child.match(model, debug)); } }