Brenton Simpson

Results 106 comments of Brenton Simpson

[FiraCode](https://github.com/tonsky/FiraCode) handles these nicely: `==` is two parallel lines (a wide equals). `===` is three parallel lines. `!==` is three parallel lines with a slash through them.

[iojs](https://iojs.org/en/index.html) doesn't yet support the full suite of JS Harmony transforms that node-jsx does. Even if it did, there's a comfort in knowing the same transformation ([jstransform](https://github.com/facebook/jstransform)) is being applied...

No disrespect intended. I try to keep the open issues list clean (e.g. only inclusive of things that need active work). I'm not yet convinced that `node-jsx` needs to be...

Please let me know what you find. FWIW, I just started our non-trivial demo on my 2.6Ghz Core i7 MBP. This demo has 9 instances of Ambidex running in parallel,...

Honestly, performance tuning is not my forté. I'm very amenable to help in this area. I see you have many `d8-ambidex` processes running. Are those all apps that you've `npm...

The most sane solution could be modularizing the shim and using something like webpack to make a browser-distributable library. Then, someone who only needs `"es6-shim/arrayPrototype"` can `require("es6-shim/arrayPrototype")` without breaking code...

I understand the reluctance to recommend a project that muxes global objects, but that's not the issue here. The issue is that ES6 Shim has a huge footprint and isn't...

@cscott I don't know if it's worth fixing. The problem is that you augment native Promises, then `es6-shim` declares them insufficient and replaces them with its polyfill. Then, when the...

As a Webpack user, a monolithic library that touches a bunch of unrelated native prototypes is very unappealing. I didn't know about [core-js](https://github.com/zloirock/core-js) when I opened this issue, but now...

@paulmillr - think files, not repos