Just curious, can you please tell me why you prefer using template strings(``) instead of general quote('') in all of the codebase.
It's rare and weird for me to see that require() a module using template strings(``), are there some benefits from using template strings ?
Just a simple question :)
Hi! Good question - here's an article on why template strings are always preferable: https://ponyfoo.com/articles/template-literals-strictly-better-strings
@jgierer12 Thanks for your explanation :)