2.0.0 β€’ Published 10 months ago

@putout/plugin-remove-useless-template-expressions v2.0.0

Weekly downloads
2,090
License
MIT
Repository
github
Last release
10 months ago

@putout/plugin-remove-useless-template-expressions NPM version

Template literals are literals delimited with backtick (`) characters, allowing for multi-line strings, string interpolation with embedded expressions, and special constructs called tagged templates.

(c) MDN

🐊Putout plugin adds ability to remove useless template expressions.

Install

npm i @putout/plugin-remove-useless-template-expressions -D

Rule

{
    "rules": {
        "remove-useless-template-expressions": "on"
    }
}

❌ Example of incorrect code

const y = `${'hello'} + ${'world'}`;

βœ… Example of correct code

const y = `hello + world`;

License

MIT