mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 11:56:43 +01:00
17 lines
483 B
TypeScript
17 lines
483 B
TypeScript
import { AstMatcher } from './types';
|
|
|
|
export function matchAny(...matchers: AstMatcher[]): AstMatcher {
|
|
return (e: HTMLElement) => matchers.some(matcher => matcher(e));
|
|
}
|
|
|
|
export function matchAll(...matchers: AstMatcher[]): AstMatcher {
|
|
return (e: HTMLElement) => matchers.every(matcher => matcher(e));
|
|
}
|
|
|
|
export function matchNot(matcher: AstMatcher): AstMatcher {
|
|
return (e: HTMLElement) => !matcher(e);
|
|
}
|
|
|
|
export function matchNone(): AstMatcher {
|
|
return () => false;
|
|
}
|