I have a code base with many strings built via string concatenation. Is there a automated method for replacing all instances of string concatenation with templates? For example:
const a = 'b ' + c;
// becomes:
const a = `b ${c}`;
A script-based solution would be awesome. An editor plugin would be even better. (I am using Visual Studio Code.)