-
We should have a test runner that:
- can run locally, from the command line.
- can be used by a CI server.
- that understands ES2015, same as the target code.
- has a DOM, when required.
-
-
I noticed because it adds a dependency on PhantomJS which took a while to download. I think this was needed for ReSpec originally, but now we only use the static markup. Can it be removed, together wi…
-
Using tool like [esnext](https://github.com/esnext/esnext) is recommended.
[babel-polyfill](https://babeljs.io/docs/usage/polyfill/) might be needed if the resulting code uses a new method that doe…
-
Is it possible to get ChakraCore to work with ES6 modules? I'm attempting to use it with ReactJS.NET, and I can't find a way around this error:
```
ReactScriptLoadException: Error while loading "…
-
Recently we're starting to want to pull in libraries that export, or have dependencies that export, ES6. As far as I can tell, there are no guidelines or structure whatsoever in NPM / the JS ecosystem…
-
Support `/\u{12345}/u` .
-
* ES6 이전의 모든 함수는 일반 함수뿐만 아니라 생성자 함수로서도 호출할 수 있다.
* 생성자 함수로 호출되지 않아도 프로토 타입 객체를 생성한다는 문제 있음
* 해당 문제를 해결하기 위해 ES6에서는 함수를 일반 함수, 메서드, 화살표 함수로 명확하게 구분했다.
* ES6 메서드
* foo(){ } super 키워드를 사용할 수…
-
The way of importing CJS or GJS module is very special and very uncommon nowadays. It is much more common to use ES6 Modules. The most annoying thing of the GJS variant, is that I don't get any auto s…
-
So I'm a big fan of ES6 modules, because they have statically analyzable `import`/`export` syntax with well-defined semantics, which means that bundling doesn't need to rely on any sorts of heuristics…