I have following string tempalte:
const someUrl = `/${currentLocale}/somecategory/${category.get('slug')}/${post.get('iD')}/${post.get('slug')}`;
The problem is that this line is too long and I have to break it, but putting simple enter in the middle of it - causes with adding new line and extra whitespaces inside the generated string.
What is the best approach to break string template into few lines just for the code style purposes ?