react-app-polyfill 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
@@ -18,9 +18,13 @@ Each polyfill ensures the following language features are present:
|
|
18
18
|
First, install the package using Yarn or npm:
|
19
19
|
|
20
20
|
```bash
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
npm install react-app-polyfill
|
22
|
+
```
|
23
|
+
|
24
|
+
or
|
25
|
+
|
26
|
+
```bash
|
27
|
+
yarn add react-app-polyfill
|
24
28
|
```
|
25
29
|
|
26
30
|
Now, you can import the entry point for the minimal version you intend to support. For example, if you import the IE9 entry point, this will include IE10 and IE11 support.
|