Onilton Maciel

Results 7 comments of Onilton Maciel

@mkotsbak I've update the web-template to remove npm need :). Take a look and tell me what you think: https://github.com/onilton/sri-web-template

It is not exactly the same, but you could do: ```java regex().oneOf( regex().range("0","9").build().toString(), regex().anyOf(",.").build().toString() ).build() ``` Which would be equivalent to ``` (?:(?:[0-9])|(?:[\\,\\.])) ``` Simplifying for clarity: ```regex ([0-9]|[\\,\\.]) ```

Can we open a PR to fix this?

If I understand the articles well, it should be something like this: ```javascript function sizeRatio(height, weight, speciesBaseHeight, speciesBaseWeight) { heightRatio = height/magikarpBaseHeight weightRatio = weight/magikarpBaseWeight return heightRatio + weightRatio }...

I don't know if this is the same issue that I'm thinking, but if it is not, I can open another issue. What about ``` scala import scala.scalajs.js.UndefOr import scala.scalajs.js.undefined...