Aditya Singh
Aditya Singh
Summary This PR enhances prototype pollution protection in formDataToJSON.js by extending the existing __proto__ check to also block constructor and prototype properties at any nesting level. This prevents potential nested...
### Summary Currently, Axios provides a basic `__proto__` check in `/lib/helpers/formDataToJSON.js` to prevent prototype pollution. However, other dangerous keys such as `constructor` and `prototype` can still potentially be used to...
# The Problem (Issue #8212) When using functions like `createVector(10, NaN)` or `float()` incorrectly, the **Friendly Error message** would point to the **line in the p5.js library file** that executes...