Cloudflare: // (double slash) inside es6 template literals interpreted as an inline comment by the auto-minifier
The following is valid javascript: var a = //; So is this: var url = https://hackerone.com; However, Cloudflare's auto-minifier removes the parts of both lines including and after the //, meaning in production, they look like this: var a = var url = https: This can either straight up break or...