-
We're trying to convert a project to using es2015 and Jest (based on `create-react-app`) and wondering if this package can have any place in it.... We used `rekuire` every in the old version and would…
-
# > JSの標準となった記述ルール
## 簡単に説明
ES2015(ES6)とは
```
ECMASCriptの6th Editionのこと。ECMAScript 6th editionの6を取ってES6と呼ばれていたが、
2015年に標準化されたため正式名称はES2015になった。
```
## ES2015で追加された機能、構文
■型宣言 letとconst
…
-
This is probably an incremental update at best. This is a simple support of ES6 module api from within scripts.
**Overall Feature Tasks:**
- [ ] Implement import keyword
- [ ] Implement Export Keywor…
-
As the title says.
I've done work implementing Proxy as a ScriptableObject which basically delegates all calls to methods of the Scriptable interface to the provided Handler object or else to the Sc…
-
Hi,
Has anyone already explored how we can support the "rest parameters" in functions?
```javascript
function sum(...theArgs) {
return theArgs.reduce((previous, current) => {
return pre…
-
This is yet another generalized break down of features new to ES6. ( You can find this, and others at this website: http://es6-features.org/ )
- [ ] String Interpolation
``` JavaScript
// N…
-
I just noticed that the current builds of TWGL are featuring ES6 syntax, do you think it would be possible to generate pure ES5 files suitable for distribution? Some browsers like iOS Safari sometimes…
-
Hi,
I am using this generator to kickstart most of my ExpressJS projects, and it's real good, but I always wonder why you use var and functions instead of let/const and arrow functions?
I always c…
bluzi updated
5 years ago
-
This may be more a question than an issue, because esbuild is probably working as intended. I am bundling a file that imports a dependent library that uses bigint and exports that code. The code b…
-
```java
// default values inside destructuring assignments,
// like 'var [a = 10] = b' or 'var {a: b = 10} = c',
// are not supported
reportError(…