@empjs/polyfill 0.0.1

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 ADDED
@@ -0,0 +1,13 @@
1
+ # EMP Polyfill
2
+ ```js
3
+ // polyfill all `core-js` features, including early-stage proposals:
4
+ import "core-js";
5
+ // or:
6
+ import "core-js/full";
7
+ // polyfill all actual features - stable ES, web standards and stage 3 ES proposals:
8
+ import "core-js/actual";
9
+ // polyfill only stable features - ES and web standards:
10
+ import "core-js/stable";
11
+ // polyfill only stable ES features:
12
+ import "core-js/es";
13
+ ```
@@ -0,0 +1,2 @@
1
+
2
+ export { }