@putout/plugin-convert-template-to-string

2.0.0 • Public • Published

@putout/plugin-convert-template-to-string NPM version

  • Template literals are literals delimited with backticks (`), allowing embedded expressions called substitutions.
  • The String object is used to represent and manipulate a sequence of characters.

(c) MDN

🐊Putout plugin adds ability to find and convert Template Literals to calling of String constructor.

Install

npm i @putout/plugin-convert-template-to-string

Rule

{
    "rules": {
        "convert-template-to-string": "on"
    }
}

❌ Example of incorrect code

const s = `${a + b}`;

✅ Example of correct code

const s = String(a + b);

License

MIT

Package Sidebar

Install

npm i @putout/plugin-convert-template-to-string

Weekly Downloads

18,207

Version

2.0.0

License

MIT

Unpacked Size

3.94 kB

Total Files

4

Last publish

Collaborators

  • coderaiser