pbkdf2
pbkdf2 copied to clipboard
process.version is undefined bug fix
process.version is currently undefined which is breaking an app that I'm working on for myself and other windows users on my team.
Switching if from process.version to global.process.version fixes it.
I'm facing this issue when running browser tests. The problem is that webpack injects the variables, when compiling, so global and process are different. global is the node and process is the browser process.