@putout/plugin-convert-template-to-string
v3.0.0
Published
šPutout plugin adds ability to find and remove useless template string
Maintainers
Readme
@putout/plugin-convert-template-to-string 
- Template literals are literals delimited with backticks (`), allowing embedded expressions called substitutions.
- The
Stringobject 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-stringRule
{
"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
