putout-plugin-apply-nullish-coalescing !NPM versionNPMIMGURLNPMURL !Dependency StatusDependencyStatusIMGURLDependencyStatusURL
putout
plugin apply optional chaining
.Install
npm i @putout/plugin-apply-nullish-coalescing
Rule
{
"rules": {
"apply-nullish-coalescing": true
}
}
❌ Incorrect code example
result = result || 'hello';
result = typeof result === 'undefined' ? 'hello': result;
✅ Correct code Example
const result = result ?? 'hello';