Echo JS 0.11.0

<~>

MaxArt comments

MaxArt 3143 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 3147 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 3159 days ago. link 1 point
Why would someone in their right mind post something like that here?!
MaxArt 3173 days ago. link 1 point
"Manifest syntax": do we need one? Couldn't JSON or YAML work just fine?
MaxArt 3174 days ago. link 2 points
TL;DR: this is the library:

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

export default sarcasm
export {
  sarcasm
}
[more]