I\'m attempting to load an RSA private key into my nodejs application using environment variables, but the newlines seem to be being auto-escaped.
For the following, ass
dotenv supports newlines with double quotes:
double quoted values expand new lines MULTILINE="new\nline" becomes {MULTILINE: 'new line'}
double quoted values expand new lines
MULTILINE="new\nline" becomes
MULTILINE="new\nline"
{MULTILINE: 'new line'}