I need something like heredoc in JavaScript. Do you have any ideas for this? I need cross-browser functionality.
I found this:
heredoc = \'\\
ES5 and earlier versions
(function(){/** some random multi line text here **/}).toString().slice(15,-5);
ES6 and later versions
`some random multi line text here`
result
some random multi line text here