
Security News
TeamPCP and BreachForums Launch $1,000 Contest for Supply Chain Attacks
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.
@jakxz/functional-or
Advanced tools
function ⏏A utility for composing a set of predicate functions that check against the curried data to find if one of the predicate conditions is met. This is most helpful when your predicates are relatively complex and you want to compose the checks in existing piped or composed functions; for the simplest example, if you have:
const isFoo = (str) => str === "foo";
const isBar = (str) => str === "bar";
you can compose these functions into:
import or from "@jakxz/functional-or";
const isFooOrBar = or(isFoo, isBar);
and use it like so:
const results = ["foo", "bar", "baz"].filter(isFooOrBar);
If you don't want to pass any functions at all, you can just check the truthyness of your data args:
const isAnyTruthy = or()("x", "y", 0, null);
Kind: Exported function
| Param | Description |
|---|---|
| ...fns | pass in any number of functions or none at all. |
FAQs
curryable OR for predicate functions
The npm package @jakxz/functional-or receives a total of 33 weekly downloads. As such, @jakxz/functional-or popularity was classified as not popular.
We found that @jakxz/functional-or demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.