mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
17 lines
487 B
TypeScript
17 lines
487 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;
|
|
}
|