Skip to content

Commit be55b7d

Browse files
authored
Update article.md
1 parent 41d791b commit be55b7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

1-js/03-code-quality/06-polyfills/article.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ So it's quite common for an engine to implement only the part of the standard.
99

1010
A good page to see the current state of support for language features is <https://kangax.github.io/compat-table/es6/> (it's big, we have a lot to study yet).
1111

12-
## Babel.JS
12+
## Babel
1313

1414
When we use modern features of the language, some engines may fail to support such code. Just as said, not all features are implemented everywhere.
1515

16-
Here Babel.JS comes to the rescue.
16+
Here Babel comes to the rescue.
1717

18-
[Babel.JS](https://babeljs.io) is a [transpiler](https://en.wikipedia.org/wiki/Source-to-source_compiler). It rewrites modern JavaScript code into the previous standard.
18+
[Babel](https://babeljs.io) is a [transpiler](https://en.wikipedia.org/wiki/Source-to-source_compiler). It rewrites modern JavaScript code into the previous standard.
1919

2020
Actually, there are two parts in Babel:
2121

@@ -33,7 +33,7 @@ Actually, there are two parts in Babel:
3333

3434
So, we need to setup the transpiler and add the polyfill for old engines to support modern features.
3535

36-
If we orient towards modern engines and do not use features except those supported everywhere, then we don't need to use Babel.JS.
36+
If we orient towards modern engines and do not use features except those supported everywhere, then we don't need to use Babel.
3737

3838
## Examples in the tutorial
3939

0 commit comments

Comments
 (0)