Moriarty47

Results 2 issues of Moriarty47

Support calculate normalized RGB value ![normalized_rgb](https://github.com/user-attachments/assets/b9fbb704-f75f-45a1-af0b-0d12660cabd0)

`path.join` should not be used with `file:\\` URL, it's unreliable. ```js // Node.js v18 const path = require('path'); path.join('file:\\', process.cwd()); // 'file:\\C:\\Users\\xxx\\nodejs\\v18.xx' // Node.js v24 const path = require('path'); path.join('file:\\',...