David Babel
David Babel
Actually the best is https://chrome.google.com/webstore/detail/rss-subscription-extensio/nlbjncdgjeocebhnmkbbbdekmmmcbfjd But it's an extra icon 😄
Your lib is awesome. Save your energy by delegate ;)
Any news for this issue ? This missing feature make the lib kind of useless for newGen React.
This PR is a first approach to fix the issue : https://github.com/algolia/react-element-to-jsx-string/pull/317 In my case it solve completely my problem.
Do you use the same node version as your travis build ? `node_js: node # lastest`
typescript > 2.6 disallow that. There is an issue about that in this repo
I came here to ask to exact same request. It's actually a must have feature for this plugin, but i can easily understand that's harder than it looks. Their are...
Actually typescript : ```js const enum CreativeOrderBy { id = 'id', advertiserId = 'advertiserId', adFormatId = 'adFormatId', name = 'name', createdAt = 'createdAt', updatedAt = 'updatedAt' } ``` become flow...
This does the job, not a big deal ```js function buildEnum(TSschema) { const nl = '\n'; let result = `${nl}${nl}// manually generated enum${nl}`; const enumRegex = /const enum (\w+) {([\s\S]*?)}/gm;...