### Most appropriate sub-area of p5.js? - [ ] Accessibility - [ ] Color - [ ] Core/Environment/Rendering - [ ] Data - [ ] DOM - [ ] Events - [ ] Image - [ ] IO - [x] Math - [ ] Typography - [ ] Utilities - [ ] WebGL - [ ] Build process - [ ] Unit testing - [ ] Internationalization - [ ] Friendly errors - [ ] Other (specify if possible) ### p5.js version 2.0.4 ### Web browser and version Chrome ### Operating system Windows ### Steps to reproduce this ### Steps: 1. console.log(min(Infinity,3)); 2. console.log(max(3,-Infinity)); 3. until 2.0.3, it throws no error. 2.0.4 and 2.0.5 throws friendly error. (There is no problem in getting the value.) ### Snippet: ```js function setup() { createCanvas(windowWidth, windowHeight); background(100); console.log(min(Infinity,3)); console.log(max(3,-Infinity)); } ``` ### 2.0.3 no error. <img width="901" height="856" alt="Image" src="https://github.com/user-attachments/assets/3597a7f6-a9f8-4bc8-8fd1-d825e87c57ad" /> ### 2.0.4, 2.0.5 friendly error occurs. <img width="871" height="855" alt="Image" src="https://github.com/user-attachments/assets/39306e5c-7f2f-4932-8958-7c429e43a22d" /> <img width="841" height="832" alt="Image" src="https://github.com/user-attachments/assets/afee5b0f-2468-4ee3-bb44-cc578ad8ffb9" /> ```js p5.disableFriendlyErrors = true; ``` This might solve the problem, but most users probably don't want to go through the hassle.