core-js-compat 3.42.0 → 3.44.0
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 +3 -3
- package/data.json +370 -60
- package/entries.json +604 -8
- package/modules-by-versions.json +19 -0
- package/modules.json +15 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ const {
|
|
|
27
27
|
exclude: [ // optional list / filter of modules to exclude, the signature is similar to `modules` option
|
|
28
28
|
'web.atob',
|
|
29
29
|
],
|
|
30
|
-
version: '3.
|
|
30
|
+
version: '3.44', // used `core-js` version, by default - the latest
|
|
31
31
|
inverse: false, // inverse of the result - shows modules that are NOT required for the target environment
|
|
32
32
|
});
|
|
33
33
|
|
|
@@ -129,9 +129,9 @@ require('core-js-compat/modules'); // => Array<ModuleName>
|
|
|
129
129
|
require('core-js-compat').modules; // => Array<ModuleName>
|
|
130
130
|
|
|
131
131
|
// the subset of modules which available in the passed `core-js` version:
|
|
132
|
-
require('core-js-compat/get-modules-list-for-target-version')('3.
|
|
132
|
+
require('core-js-compat/get-modules-list-for-target-version')('3.44'); // => Array<ModuleName>
|
|
133
133
|
// or
|
|
134
|
-
require('core-js-compat').getModulesListForTargetVersion('3.
|
|
134
|
+
require('core-js-compat').getModulesListForTargetVersion('3.44'); // => Array<ModuleName>
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
If you wanna help to improve this data, you could take a look at the related section of [`CONTRIBUTING.md`](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#how-to-update-core-js-compat-data). The visualization of compatibility data and the browser tests runner is available [here](http://zloirock.github.io/core-js/compat/), the example:
|