-
What do you think about migrating the project to ES2015?
-
-
Hey, I've been looking into graphitti and saw that you use classes to define relationships in the JS Client.
I'm currently using https://github.com/ghidoz/angular2-jsonapi with the "jsonapi suite" a…
-
I've started work on refactoring some of bbr to use Rollup + Babel with a more modular design. Overall this should help everyone out to make it more extensible and easier to maintain in the long run. …
-
Hi,
Thanks for a great plugin :).
I found in some cases, semicolons aren't removed, although it is legal (or at least I think it is) to do so:
**.esformatter**
``` json
{
"preset": "default",
…
-
- This boilerplate is only for Chrome Extension, so we can just following ES2015 compatible syntax of Google Chrome.
- The Webpack@2 is supported ES2015 import/export transform, we can remove `babel-…
-
-
When I look at TypeScript's ES2015.core.d.ts I see ObjectConstructor's assign. I don't see it in the latest version of Atom's lib.d.ts though and get an error
-
I figured I would create a few Issue statements covering some of the new Features in ECMAScript in a hope that it will make the changes a little easier to handle. All of this is copied (with slight m…
-
Implement ES6 destructuring assignment:
``` js
function test() {
return [1, 2, 3];
}
var x, y, z;
[x, y, z] = test();
```
Ideally when a function returns an array literal and the call site uses…