Echo JS 0.11.0

<~>

MaxArt comments

MaxArt 2847 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.
MaxArt 2850 days ago. link 2 points
Sheesh, we really don't need to become as toxic as Reddit.

Can we please have this topic deleted? EchoJS isn't the place for developer feuds.
MaxArt 2862 days ago. link 1 point
Why would someone in their right mind post something like that here?!
MaxArt 2877 days ago. link 1 point
"Manifest syntax": do we need one? Couldn't JSON or YAML work just fine?
MaxArt 2878 days ago. link 2 points
TL;DR: this is the library:

function sarcasm() {
  return 'This is great project'
}

export default sarcasm
export {
  sarcasm
}
[more]