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.
@putout/plugin-simplify-ternary
Advanced tools
🐊Putout plugin adds ability to simplify ternary operator
The ternary operator takes three operands: a condition followed by a question mark (
?
), then an expression to execute if the condition is truthy followed by a colon (:
), and finally the expression to execute if the condition is falsy. This operator is frequently used as an alternative to anif...else
statement.(c) MDN
🐊Putout plugin adds ability to simplify ternary to logical expression when first and second operands are the same.
npm i @putout/plugin-simplify-ternary -D
{
"rules": {
"simplify-ternary/value": "on",
"simplify-ternary/spread": "on"
}
}
Check out in 🐊Putout Editor.
module.exports = fs.copyFileSync ? fs.copyFileSync : copyFileSync;
x = y ? y : z;
x = y ? z : y;
x = y ? z : false;
m = is ? a && b : a && c;
module.exports = fs.copyFileSync || copyFileSync;
x = y || z;
x = y && z;
m = a && is ? b : c;
No need to use ternary
when you can use logical expression (&&
) it behaves in the same way, but simpler.
Check out in 🐊Putout Editor.
const a = {
...DEV ? {
devtool: 'eval',
} : {},
};
const a = {
...DEV && {
devtool: 'eval',
},
};
Linter | Rule | Fix |
---|---|---|
🐊 Putout | simplify-ternary | ✅ |
⏣ ESLint | no-unneeded-ternary | ⚠️ (partially: no MemberExpression, SpreadElement support) |
MIT
FAQs
🐊Putout plugin adds ability to simplify ternary operator
The npm package @putout/plugin-simplify-ternary receives a total of 9,238 weekly downloads. As such, @putout/plugin-simplify-ternary popularity was classified as popular.
We found that @putout/plugin-simplify-ternary 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.