JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8011
  • Score
    100M100P100Q127102F
  • License MIT

🐊Putout plugin adds ability to remove useless and add missing operator 'new'

Package Exports

  • @putout/plugin-new
  • @putout/plugin-new/lib/new.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@putout/plugin-new) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@putout/plugin-new NPM version

🐊Putout plugin adds ability to add missing and remove useless operator new.

Install

npm i @putout/plugin-new

Rule

{
    "rules": {
        "new/remove-useless": "on",
        "new/add-missing": "on"
    }
}

remove-useless

Operator new has no sense for BigInt, Boolean, String, Number, Object, RegExp, Math, Reflect, Error:

Thus the function call Error(…) is equivalent to the object creation expression new 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.

❌ Example of incorrect code

new Error('Something whent wrong');
new new Boolean();

βœ… Example of correct code

Error('Something whent wrong');
Boolean();

add-missing-new

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'

❌ Example of incorrect code

const map = Map();

βœ… Example of correct code

const map = new Map();

Comparison

Linter Rule Fix
🐊 Putout remove-useless-new βœ…
πŸ¦• ESLint no-new-wrappers ❌
β € no-new-object ❌
β € no-array-constructor ❌
β € no-new-symbol ❌

License

MIT