kHRISl33t / runtime-env-cra

Runtime environment handler for create-react-apps
MIT License
49 stars 23 forks source link

updated variable value comparator #22

Open sorXCode opened 2 years ago

sorXCode commented 2 years ago

Currently, setting a variable as an empty string throws an error, this PR fixes that.

> const VAR = "";
> !VAR;
true
> VAR === undefined;
false