Typescript/Use Template Literals
Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
Typescript
migration
This codemod replaces string concatenations with template literals.
Before
const name = 'John';const greeting = 'Hello, ' + name + '!';
After
const name = 'John';const greeting = `Hello, ${name}!`;
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community