Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to make re-usable pattern instance? #1

Open
SukkaW opened this issue Nov 21, 2024 · 0 comments
Open

How to make re-usable pattern instance? #1

SukkaW opened this issue Nov 21, 2024 · 0 comments

Comments

@SukkaW
Copy link

SukkaW commented Nov 21, 2024

E.g. I might wanna do this:

const matcher1 = loadPatterns(patterns1);
const matcher2 = loadPatterns(patterns2);
const matcher3 = loadPatterns(patterns3);

for (const data of dataset) {
  if (matcher1(data)) {
    if (matcher2(data)) {
    } else {}
  } else if (matcher3(data)) {
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant