dotenv issue

node v14.20.1
version: 1.0.0
endpointsharetweet
const dotenv15 = require('dotenv@15.0.0'); const env15 = dotenv15.parse(` THING="" `); console.log(env15.THING === ''); const dotenv14 = require('dotenv@14.3.2'); const env14 = dotenv14.parse(` THING="" `); console.log(env14.THING === '');
Loading…

no comments

    sign in to comment