
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@putout/plugin-maybe
Advanced tools
🐊Putout plugin helps with maybe
monad.
npm i @putout/plugin-maybe -D
{
"rules": {
"maybe/array": "on",
"maybe/empty-array": "on",
"maybe/fn": "on",
"maybe/noop": "on",
"maybe/declare": "on"
}
}
const {isArray} = Array;
const array = isArray(a) ? a : [a];
const {isArray} = Array;
const maybeArray = (a) => isArray(a) ? a : [a];
const array = maybeArray(a);
const array = !a ? [] : a;
const maybeArray = (a) => !a ? [] : a;
const array = maybeEmptyArray(a);
const isFn = (a) => typeof a === 'function';
const fn = isFn(a) ? a : () => {};
const isFn = (a) => typeof a === 'function';
const noop = () => {};
const maybeFn = isFn(a) ? a : noop;
const fn = maybeFn(a);
const fn = f || (() => {});
const noop = () => {};
const fn = fn || noop;
When you not sure is f
a function, but you want to use it as function anyways:
const fn = maybeFn(f);
maybeCall(fn);
const isFn = (a) => typeof a === 'function';
const noop = () => {};
const maybeFn = (a) => isFn(a) ? a : noop;
const maybeCall = (a, ...b) => isFn(a) && a(...b);
const fn = maybeFn(f);
maybeCall(fn);
When you not sure is a
is an array or not, but you want to get first element of it.
const b = maybeFirst(a);
const {isArray} = Array;
const maybeFirst = (a) => isArray(a) ? a[0] : a;
const b = maybeFirst(a);
MIT
FAQs
🐊Putout plugin applies Maybe monad
The npm package @putout/plugin-maybe receives a total of 4,974 weekly downloads. As such, @putout/plugin-maybe popularity was classified as popular.
We found that @putout/plugin-maybe demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.