|
|
|
|
|
by withinboredom
77 days ago
|
|
environment variables can change while the process is running and are not memory safe (though I suspect node tries to wrap it with a lock). Meaning if you check a variable at point A, enter a branch and check it again at point B ... it's not guaranteed that they will be the same value. This can cause you to enter "impossible conditions". |
|
[0] https://unix.stackexchange.com/questions/38205/change-enviro...