Echo JS 0.11.0

<~>

MaxArt comments

MaxArt 3179 days ago. link 1 point
"Manifest syntax": do we need one? Couldn't JSON or YAML work just fine?
MaxArt 3180 days ago. link 2 points
TL;DR: this is the library:

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

export default sarcasm
export {
  sarcasm
}
MaxArt 3183 days ago. link 1 point
I saw your project a while ago and it was really interesting.
What kind of contribution are you looking for exactly? What aspects of the project need help?
MaxArt 3183 days ago. link 1 point
Haven't you heard the news? Java is dead, Oracle killed it.

Also, that Java isn't JavaScript so it has no place here.
MaxArt 3184 days ago. link 1 point
We used to say that JavaScript is not Java, I wouldn't have imagined that apparently we have to say it's not CSS either.
MaxArt 3186 days ago. link 2 points
Why all this off topic stuff lately?
What the heck.
MaxArt 3188 days ago. link 2 points
Indeed, I don't think CoffeeScript is still relevant.
But we have to admit that it spun a lot of innoation in the JavaScript community in the past, leading to the whole ES6 new syntax. A lot ot remarkable projects (Atom comes to mind) are built using CoffeeScript.

But now that ES6 *is* here... well... It looks like it's yet-another-language-that-compiles-to-JavaScript. With nothing much to add, I'm afraid.
MaxArt 3191 days ago. link 3 points
Well, it's the usual drill: when not holding primitive values, it's the reference to the object to be immutable, not the object itself.
You're better off with Object.freeze (which does not deep-freeze it anyway).
[more]