Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@putout/plugin-new
Advanced tools
🐊Putout plugin adds ability to remove useless and add missing operator 'new'
🐊Putout plugin adds ability to add missing and remove useless operator new
.
npm i @putout/plugin-new
{
"rules": {
"new/remove-useless": "on"
"new/add-missing": "on"
}
}
Operator new
has no sense for BigInt
, Boolean
, String
, Number
, Object
, RegExp
, Error
:
Thus the function call
Error(…)
is equivalent to the object creation expressionnew Error(…)
with the same arguments.(c) https://262.ecma-international.org/12.0/#sec-error-constructor
And Symbol
cannot be used with new
, as it is primitive.
new Error('Something whent wrong');
new new Boolean();
Error('Something whent wrong');
Boolean();
The
Set
constructor lets you create Set objects that store unique values of any type, whether primitive values or object references.(c) MDN
Missing operator new
should be added since built-in objects:
Set
;WeakSet
;Map
;WeakMap
;Int8Array
;Uint8Array
;Uint8ClampedArray
;Int16Array
;Uint16Array
;Int32Array
;Uint32Array
;Float32Array
;Float64Array
;BigInt64Array
;BigUint64Array
;Produces TypeError
when called without new
:
Uncaught TypeError: Constructor Set requires 'new'
const map = Map();
const map = new Map();
Linter | Rule | Fix |
---|---|---|
🐊 Putout | remove-useless-new | ✅ |
🦕 ESLint | no-new-wrappers | ❌ |
⠀ | no-new-object | ❌ |
⠀ | no-array-constructor | ❌ |
⠀ | no-new-symbol | ❌ |
MIT
FAQs
🐊Putout plugin adds ability to remove useless and add missing operator 'new'
We found that @putout/plugin-new 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.