javascript - Automatically convert string concatenation to template literals -


i have code base many strings built via string concatenation. there automated method replacing instances of string concatenation templates? example:

const = 'b ' + c; // becomes: const = `b ${c}`; 

a script-based solution awesome. editor plugin better. (i using visual studio code.)

this can done eslint. see rule: http://eslint.org/docs/rules/prefer-template.


Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

Ansible warning on jinja2 braces on when -