Nathan Vander Wilt

Results 234 comments of Nathan Vander Wilt

> Does it work on Mac/Windows/Linux? It's complicated, afaict: * ✅Windows: Microsoft offers a plugin https://github.com/Microsoft/react-native-windows * ❓macOS: there's "at your own risk" fork of RN itself at https://github.com/ptmt/react-native-macos. Plus...

https://developers.google.com/caja/ — "The Caja Compiler is a tool for making third party HTML, CSS and JavaScript safe to embed in your website."

https://code.google.com/p/mentaljs/ — "I want to execute within the window but prevent sandboxed code from writing to native objects."  

https://github.com/tc39/proposal-realms (UPDATE: and related https://github.com/tc39/proposal-ses, via https://github.com/denoland/deno/issues/1639#issuecomment-574402678 and as I'm catching up also mentioned below)

@kumavis Clever indeed! I had wondered if `with` could be somehow used but couldn't quite see it working out and ended up writing it off since it wasn't available in...

@Mickael-van-der-Beek That `Symbol` and `Reflect` aren't exposed is really a bug (now filed as #26), although certainly with the latter it's probably good that it can reviewed a bit more

Finally started diving into this, although only a bit. So far the couple things that stood out as needing a closer look would be `Reflect.construct` and `Symbol.for` but both of...

Also `new.target` seems to be harmless in my quick testing: ``` (function () { function Foo() { return new.target.prototype.constructor.constructor.constructor; } return new Foo(); })() ``` still returns evel.Function as it...

What about `AsyncFunction` from `Object.getPrototypeOf(async function(){})`? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction

Hmm, tempting to fix that but please be aware that this project does not "work" as I'd originally hoped: #11 Sorry if there was confusion…I'll update the README right now...