Troy Alford
Troy Alford
Agreed. At my current employer, there is a bone of contention around "flexbox being buggy on IE." For ease of adoption, it might be nice to add something describing a...
The current listing states: 1. In IE 10, setting `-ms-flex-flow: row wrap` will not wrap unless `display: inline-block` is set on child elements. 2. IE 11 incorrectly focuses a child...
I wrote `react-jsx-parser` based on the code in this lib, and there are definitely a few frustrating things that I haven't been able to overcome via this approach, as well....
@jazzido - you are welcome! I hope the lib is helping you create cool stuff. :) RE: boolean expressions, I just did a little initial testing, and it does seem...
In thinking more about this - perhaps the issue, here, is that for some reason we aren't correctly handling the `!` operator. The ternary operator is a different construct. :\
Sorry guys :\ At this point, given that Microsoft no longer supports IE11, I have no intention of continuing to support IE11 for my open-source projects, like this one. That...
That may be all it takes, yes. The library doesn't actually do anything particularly hairy, itself. The bulk of the lib's size, though, is based on importing/packaging acorn js, so...
I landed here, today, looking for the same kind of code-mod functionality, and wondered what the group might think about something like: ```yml replace: from: "\n.propTypes = {\n" to: "\n};\n"...
Edit: these functions have been added to the list, now, thank you!! ------ > Should `jest.mock` be added as well? Doesn't seem to be tracked. This still seems to not...
> > Could we get support for jest.mock and jest.requireActual compatibility APIs > Well put together @TroyAlford I think this is a very clear implementation maybe you want to create...