Forbes Lindesay
Forbes Lindesay
It might need to also be disabled inside `with` blocks or where there's `eval`s and `new Function`s, but virtually all optimisations are disabled inside `with` blocks etc.
For anyone else reading: ``` javascript function test() { this.__defineGetter__("x", function() { alert("This is evil."); return 5; }); return x; } console.log(new test()); ``` just throws a reference error and...
Your suggested example usage has a race condition. That doesn’t necessarily mean you shouldn’t do this, but if someone as experienced as you are (presumably you dealt with race conditions...
I've seen this without the nullable aspect. It seems to have recently broken. Possibly due to a TypeScript update.
as in, convenience when calling it? If so, perhaps consider just wrapping all values, rather than only the builtin constructor?
I'm not entirely sure tbh. I want to build an app that supports contact management though, so it really needs everything that other major clients would support. At a minimum,...
I don't think you'd want inbox to be the source of truth, but I do think you'd want to be able to sync as much info as possible with e-mail...
I think this would be a huge UX improvement. I like to have lots of environments in one project so you can do alerting across environments, but it does mean...
One way to do it would be to have a menu item on each log entry with: - show surrounding logs - show surrounding logs matching: app = "api" -...
In my own projects, I've been using `// @public` (https://github.com/ForbesLindesay/atdatabases/blob/4812d65ed8af3a4e9dda5e9e782ace85cc983b68/packages/pg-test/src/jest/globalSetup.ts#L1) as a way to mark a file as part of the public API. Then to avoid having the import paths...