Jörn Zaefferer
Jörn Zaefferer
Related to my comment on #13 - I'm considering importing the language files form moment.js (MIT licensed). Can you check if their turkish translation looks good to you? https://github.com/timrwood/moment/blob/master/lang/tr.js#L52
@Krinkle momentjs has the same problem as this project: translations are user contributed, so there's only a limited selection, with usually no way for the maintainer to verify the quality...
Sorry, that's not what I meant. "equivalent" was not a good choice. Since your example is for the standalone router package, but I'm using the built-in Router from Express, I...
For anyone else trying to captures prop-type errors in unit tests with Jest - this `setupTest.js` works for us: ```js beforeEach(() => { jest.spyOn(console, 'error') jest.spyOn(console, 'warn') }) afterEach(() =>...
We recently upgraded Jest to latest and had to drop this. I don't know of any alternatives :/
Seems fine to me to drop both enhancements. For the record, I heavily prefer to release 1.16 before spending any time on this.
I don't know what you mean with "transpose the table". Maybe you could push a branch/PR with a sample change towards what you suggest?
So you'd end up with multiple tables for each major feature with rows per framework, and a handful of columns for each relevant aspect of that feature?
That seems good. Can't promise that I'll get around to implementing it though :/
There are some mentions of deepEqual in the node 8.x changelog, but nothing marked as breaking: https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V8.md Might be a regression in node 8, or one of those "bug that...