Tobias Lohse

Results 84 comments of Tobias Lohse

I also found this proposal super interesting, but I'm not even sure how something like that could be implemented. I found your approach to be closest to that. https://github.com/apollographql/apollo-client/issues/585#issuecomment-272625302

I didn't know the lodash functions `toNumber`, etc. and they are not supported yet by this lib, either, are they?

Yeah I was also thinking about that. I think allowing to add custom transformations would be great. Maybe without the need to create a package though, just being able to...

Maybe you still want to consider adding a toDate function anyways, so that toNunber and toString have an equivalent. I think parsing dates is one of the most common transformations...

Yeah, that makes a lot of sense totally convinced that this is not a good idea to include it for the reasons you mention. Don't overload the library with too...

Is there any way I could help to move this forward. It seems like you already have a rough idea, how the API could look like. Let me know if...

You can use a custom Block parser like this: ```js stateFromMarkdown(value, { customBlockFn: (node) => { if ( node.tagName === 'P' && node.childNodes && node.childNodes.length === 1 && smartypantsu(node.childNodes[0].toString(), -1).match(/^\s*[-]{3,}\s*$/)...

Redux-offline is even mentioned in the redux-persist v5 docs under ‘Why v5’ > easier to ship persist support inside of other libs (e.g. redux-offline) So there must be a good...

I have this issue as well. Any idea what's going on or how to fix it?

You'd need to have a single test runner and test hooks store. From looking at the Codebase this wouldn't be possible with the tester, but you could simply build your...