import { MatcherRule } from './MatcherRule.js'; /** * @access private */ export class MatchesAnything extends MatcherRule { constructor(transformation: (v: Input_Type) => Output_Type) { super(transformation); } matches(_: Input_Type): boolean { return true; } }