vlad 6f123ff03e 18.07 | 6 gadi atpakaļ | |
---|---|---|
.. | ||
lib | 6 gadi atpakaļ | |
.npmignore | 6 gadi atpakaļ | |
README.md | 6 gadi atpakaļ | |
package-lock.json | 6 gadi atpakaļ | |
package.json | 6 gadi atpakaļ |
Compile ES2015 block scoping (const and let) to ES5
npm install --save-dev babel-plugin-transform-es2015-block-scoping
.babelrc
(Recommended).babelrc
Without options:
{
"plugins": ["transform-es2015-block-scoping"]
}
With options:
{
"plugins": [
["transform-es2015-block-scoping", {
"throwIfClosureRequired": true
}]
]
}
babel --plugins transform-es2015-block-scoping script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-block-scoping"]
});
throwIfClosureRequired
In cases such as the following it's impossible to rewrite let/const without adding an additional function and closure while transforming:
for (let i = 0; i < 5; i++) {
setTimeout(() => console.log(i), 1);
}
In extremely performance-sensitive code, this can be undesirable. If "throwIfClosureRequired": true
is set, Babel throws when transforming these patterns instead of automatically adding an additional function.