@putout/plugin-remove-iife

putout plugin adds ability to find and remove iife

Usage no npm install needed!

<script type="module">
  import putoutPluginRemoveIife from 'https://cdn.skypack.dev/@putout/plugin-remove-iife';
</script>

README

@putout/plugin-remove-iife NPM version Dependency Status

putout plugin adds ability to find and remove iife.

Install

npm i @putout/plugin-remove-iife

Rule

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

❌ Incorrect code example

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

✅ Correct code Example

console.log('hello');

License

MIT