Dan Levy

Results 59 comments of Dan Levy

Thanks @joeyklee 🤘 Let me know if I need to make any changes.

Side note on reduce: I'm seeing **vast** speed improvements in .reduce since node v0.12/v4 days. Extra mem allocs are mostly cleaned up in the faster GC pass. Both for string...

### Disable "Smart Quotes"

I thought bluebird's long stack trace support was largely from native functionality `Error.stackTraceLimit = 50` or something similar?

Just ran into this, and I agree @mjackson - I'd love to see this in core. Setting these sort of priorities sends the right message: **a11y isn't optional** 👍 I'll...

> I am glad to see more work on these proposals - I appreciate the immense political & technical effort these features require. Thank you all. I couldn't see anything...

Seriously though, `>>alright = 'maybe'` or `|>alright = 'maybe'` Noticed some of that here: https://github.com/zenparsing/js-classes-1.1/issues/19#issuecomment-371263615 Ugh, I keep coming back to: do we *really* need privates in JS? I know,...

Thanks for the explanation @allenwb - On your point here: > "One reason for choosing var is because it can be seen as an abbreviation for "instance VARiable". It places...

how about `void x = 10;` 😆 ... lets have fun recycling JS keywords now that it's in fashion. ;)

On this issue - I bet 95% of devs using plain initializers (`class C { x = 10; }`) would be happy to leave out computed name expressions (`class F...