core-js-bundle 3.8.3 → 3.9.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "core-js-bundle",
3
3
  "description": "Standard library",
4
- "version": "3.8.3",
4
+ "version": "3.9.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/zloirock/core-js.git"
@@ -54,5 +54,5 @@
54
54
  "scripts": {
55
55
  "postinstall": "node -e \"try{require('./postinstall')}catch(e){}\""
56
56
  },
57
- "gitHead": "a88734f1d7d8c1b5bb797e1b8ece2ec1961111c6"
57
+ "gitHead": "37970c09678489b5663bd051342c2055f6982f37"
58
58
  }
package/postinstall.js CHANGED
@@ -1,4 +1,4 @@
1
- /* eslint-disable max-len */
1
+ /* eslint-disable max-len -- for better formatting */
2
2
  var fs = require('fs');
3
3
  var os = require('os');
4
4
  var path = require('path');
@@ -51,7 +51,7 @@ function isBannerRequired() {
51
51
  }
52
52
 
53
53
  function showBanner() {
54
- // eslint-disable-next-line no-console,no-control-regex
54
+ // eslint-disable-next-line no-console,no-control-regex -- output
55
55
  console.log(COLOR ? BANNER : BANNER.replace(/\u001B\[\d+m/g, ''));
56
56
  }
57
57