Kenneth Lim
Kenneth Lim
Interesting, I had no idea cross product is a 3 dimension only thing! I personally think if that is the case then it probably should be removed here, not only...
Hi @tapioca24, does the return value of `frameRate()` (without any arguments) not work in your use case?
There seems to be something going on on NPM side about this: https://github.com/npm/cli/issues/4992 I'm looking into a workaround for us. Edit: A quick workaround for now is to use node...
> We should update the docs and specify valid versions for node, as the build fails with the current LTS version (16.x) and the instructions [here](https://p5js.org/contributor-docs/#/) (though my error is...
@dhowe Can you share your node.js and npm versions as well? Does it always fail on the same test case?
Don't think there's an update recently. I'm working on the build and release process at the moment and I'll see how much I can optimize and streamline things. I'll close...
I think I may know what it is but I should have already fixed it...but in any case node 16 causes problems with `npm install` as well (or rather `npm`...
@almchung @outofambit Would you like to have a look at this? I would imagine including a check for `NaN` [here](https://github.com/processing/p5.js/blob/main/src/core/friendly_errors/validate_params.js#L344) as technically `NaN` is considered a number type, or even...
In the case of `NaN` (not string that parses to `NaN`) it will satisfy the first condition of `typeof NaN == "number"` and return true right there. Directly using `isNaN()`...
The biggest problem I see here is that this will likely be a breaking change and affect the behaviour of many existing sketches, and so will not be something we...