Replies: 1 comment 3 replies
-
You can use P.union, or pass these values directly to with: match(extension)
.with(
P.union(".vst", ".vst3", ".component", ".au", ".aaxplugin", ".app"),
async () => do2()
)
// OR
.with(".vst", ".vst3", ".component", ".au", ".aaxplugin", ".app", async () =>
do2()
) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my code
Beta Was this translation helpful? Give feedback.
All reactions