Martin Sherburn
Martin Sherburn
Some platforms may not have process.env in the global scope and this shouldn't prevent util from running. Currently it will thrown an exception on import if process.env doesn't exist.
Some JavaScript engines (specifically [Hermes](https://github.com/facebook/hermes) and [QuickJS](https://bellard.org/quickjs/)) don't support accessing local variables from within an `eval` function call. For example: ``` const foo = "Hello World!" eval('console.log(foo)'); ``` Throws an...
I wanted to make sure that if somebody forgot or didn't receive an email I was able to recreate the exact same draw. I've done this by added the ability...