Skip to content

Files

This branch is 1349 commits behind coderaiser/putout:master.

plugin-remove-iife

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 16, 2023
Jun 5, 2023
Jul 20, 2022
Jan 6, 2022
Apr 12, 2023
Apr 10, 2024
Apr 13, 2024
Apr 13, 2023
Oct 24, 2020
Apr 12, 2023
Sep 26, 2024

@putout/plugin-remove-iife NPM version

An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.

(c) MDN

🐊Putout plugin adds ability to find and remove IIFE. Check out in 🐊Putout Editor:

Install

npm i @putout/plugin-remove-iife

Rule

{
    "rules": {
        "remove-iife": "on"
    }
}

❌ Example of incorrect code

(function() {
    console.log('hello');
})();

((a) => fn(a))(value);
((a, b) => fn(a, b))(value, value2);

✅ Example of correct code

console.log('hello');
fn(value);
fn(value, value2);

License

MIT