Renato Ribeiro
Renato Ribeiro
🤔 Yeah, maybe. I tried here and debounce worked (don't know about perf). But throttle doesn't.
I tried something at the constructor: https://codesandbox.io/s/kk0190xnk5
*For someone else that have same problem:* As workaround I've created a plugin that remove spread syntax generated selectors ```js import { plugins } from 'glamor' plugins.add(({ style, selector })...
https://www.youtube.com/watch?v=2deCwZ5-3wM
Aplicado!
If you are using webpack: http://stackoverflow.com/questions/35099440/wow-js-with-webpack-and-react If not, thats no secret.
parece que o litrão da jaú vai aumentar de novo https://www.buzzfeed.com/felitti/litrao-em-promocao-lota-rua-em-bairro-rico-de-sao-paulo-e
That's great! > I don't know if you notice them, but I have already implemented Worlds route. 😄 :o where??
I could help with this :) (I [did it](https://github.com/renatorib/tibia-node-crawler/blob/master/src/modules/world/parser.js) two years later, xD)
About the world name: I think it could be normalized, this way we can handle `amera`, `AMERA`, `aMera`, etc. ```js const normalize = (name) => name.charAt(0).toUpperCase() + name.slice(1).toLowerCase() // normalize('aMera')...