This is a JS codemod written in jscodeshift to transform custom String.fmt()
calls to template literals. For example:
const firstAnimalType = 'fox';
const secondAnimalType = 'dog';
'The big red %s jumps over the lazy brown %s'.fmt(firstAnamalType, secondAnimalType);
...is converetd to: