Echo JS 0.11.0

<~>

mscdex 2578 days ago. link 1 point
I don't see the benefit of this really, especially considering performance will probably be sub-par compared to strict equality and similar checks (e.g. using `val !== val` to check for `NaN`).
MaxArt 2578 days ago. link 1 point
I still think === is the way to go in most of the cases. Object.is has an advantage when dealing with some numeric edge cases, but that's pretty much all. For the est, it's more verbose and less readable.