Jeremy Walker
Jeremy Walker
I have a GraphQL endpoint that requires authentication. I protect with some very simple (passport-based) middleware: const redirectIfNotAuthenticated = (request, response, next) => request.isAuthenticated() && request.session.user ? next() : response.redirect('/login');...
Your readme file says: >especially useful when used in combination with fixture-factory. ... and then it doesn't seem to make any further mention of the library whatsoever. It seems like...
Sorry for filing so many tickets, but I have another feature that would be really handy. Right now there's no way to open the calendar on the time-picking tab. This...
Hello. I've been comparing React-based date *and* time pickers, and `input-moment` looks to be the best. However, getting up to speed with it could be a little easier. If you...
I recently discovered that when you try to use this plug-in with another Babel plug-in, [module-resolver](https://github.com/tleunen/babel-plugin-module-resolver/), it breaks. That plug-in re-writes the paths of `import` statements, for instance transforming `"~/src/foo"`...
The new `_.property` is really neat, and I love using it, but there's one problem: it only returns static values. For instance, let's say I want to find out if...
I recently discovered that when you try to use this plug-in with https://github.com/airbnb/babel-plugin-dynamic-import-webpack (which enables the import operator/`import(somePath)` syntax), it doesn't work. For instance: // a.js export const foo =...
I saw a reference to a `dbCleanup` function in one of the issues (I guess it wasn't working in SQLite?), but no other mention of what it is or how...
If you try doing `_.trim('someProperty', 'Property')`, you might be surprised at the result: instead of "some" (as you might expect), you get "som". This happens because the current trim implementation...
I love the Redux dev tools (thank you!), but I have one minor pet peeve with it. When I use the tool I use it to find out what my...