Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
object-boolean-combinations
Advanced tools
Consumes a defaults object with booleans, generates all possible variations of it
Consumes a defaults object with booleans, generates all possible variations of it
This package is pure ESM. If you're not ready yet, install an older version of this program, 4.1.0 (npm i object-boolean-combinations@4.1.0
).
npm i object-boolean-combinations
import { strict as assert } from "assert";
import { combinations } from "object-boolean-combinations";
assert.deepEqual(
combinations({
a: true,
b: false,
c: true,
}),
[
{ a: false, b: false, c: false },
{ a: true, b: false, c: false },
{ a: false, b: true, c: false },
{ a: true, b: true, c: false },
{ a: false, b: false, c: true },
{ a: true, b: false, c: true },
{ a: false, b: true, c: true },
{ a: true, b: true, c: true },
],
);
// you get 2^n plain objects in an array
Please visit codsen.com for a full description of the API.
To report bugs or request features or assistance, raise an issue on GitHub.
MIT License.
Copyright © 2010-2024 Roy Revelt and other contributors.
FAQs
Consumes a defaults object with booleans, generates all possible variations of it
We found that object-boolean-combinations 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.