Taco de Wolff
Taco de Wolff
The Random ones are not feasible. `Math.random` is not the same as `new Date`, the former is probably a much more secure random source, while the latter is a poor...
Try "5a" for example, or try parseInt("5.5") != +"5.5" On Tue, Jan 21, 2025, 12:02 Julien Voisin ***@***.***> wrote: > > parseFloat("aaa") > NaN > > +"aaa" > NaN >...
Yes, many of the conversions are incorrect, but converting `(n = n + 1) => (++n)` should be fine (not `n++` as you correctly mention). The ones that are valid...
I've implemented the `n=n+1 => ++n`, the `n=n+a => n+=a`, and `Math.sqrt(a) => a**.5` transformations!
Only the AMD64 is being published to Docker! You can easily copy the Dockerfile and make your own though
Thanks Tobias for the response! Could this be made to work in the general case, ie. from and rcpt domains are the same?
I believe this could be improved. I tried disabling the symbol in `settings.conf` under `authenticated = yes;`, but specifically these mails are sent using sendmail. I've set out the following...
Thank you Tobias for the extensive reply. Reading the code I agree with your comments on case 1, but this is not what I observe experimentally. In fact, if case...
You are completely right, sorry about the confusion!
As was mentioned in https://github.com/tdewolff/minify/issues/790 I don't think the `===` operator should fail in those circumstances, do you have an example when this was causing a problem?