Upgrade eslint-plugin-import
R=jacktfranklin@chromium.org
Bug: none
Change-Id: I0ad7ba9133af3db19c448a284d79bdfc08101dea
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3268294
Commit-Queue: Tim van der Lippe <tvanderlippe@chromium.org>
Auto-Submit: Tim van der Lippe <tvanderlippe@chromium.org>
Reviewed-by: Jack Franklin <jacktfranklin@chromium.org>
diff --git a/node_modules/is-regex/CHANGELOG.md b/node_modules/is-regex/CHANGELOG.md
index 3b2a48c..b7496b2 100644
--- a/node_modules/is-regex/CHANGELOG.md
+++ b/node_modules/is-regex/CHANGELOG.md
@@ -5,6 +5,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [v1.1.4](https://github.com/inspect-js/is-regex/compare/v1.1.3...v1.1.4) - 2021-08-05
+
+### Commits
+
+- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`4b17cad`](https://github.com/inspect-js/is-regex/commit/4b17cad8496b1ae621b18335fa3afe94d0c65e83)
+- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`2dad4af`](https://github.com/inspect-js/is-regex/commit/2dad4afffa15f07cbbf7675b77d1f650c92652c4)
+
## [v1.1.3](https://github.com/inspect-js/is-regex/compare/v1.1.2...v1.1.3) - 2021-05-07
### Commits
diff --git a/node_modules/is-regex/index.js b/node_modules/is-regex/index.js
index 80a2d33..19780f4 100644
--- a/node_modules/is-regex/index.js
+++ b/node_modules/is-regex/index.js
@@ -1,8 +1,7 @@
'use strict';
var callBound = require('call-bind/callBound');
-var hasSymbols = require('has-symbols/shams')();
-var hasToStringTag = hasSymbols && !!Symbol.toStringTag;
+var hasToStringTag = require('has-tostringtag/shams')();
var has;
var $exec;
var isRegexMarker;
diff --git a/node_modules/is-regex/package.json b/node_modules/is-regex/package.json
index 39644c9..8b8e873 100644
--- a/node_modules/is-regex/package.json
+++ b/node_modules/is-regex/package.json
@@ -1,6 +1,6 @@
{
"name": "is-regex",
- "version": "1.1.3",
+ "version": "1.1.4",
"description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag",
"author": "Jordan Harband <ljharb@gmail.com>",
"funding": {
@@ -40,19 +40,19 @@
],
"dependencies": {
"call-bind": "^1.0.2",
- "has-symbols": "^1.0.2"
+ "has-tostringtag": "^1.0.0"
},
"devDependencies": {
"@ljharb/eslint-config": "^17.6.0",
"aud": "^1.1.5",
- "auto-changelog": "^2.2.1",
- "core-js": "^3.12.0",
+ "auto-changelog": "^2.3.0",
+ "core-js": "^3.16.0",
"eclint": "^2.8.1",
- "eslint": "^7.26.0",
+ "eslint": "^7.32.0",
"foreach": "^2.0.5",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.4",
- "tape": "^5.2.2"
+ "tape": "^5.3.0"
},
"testling": {
"files": "test/index.js",
diff --git a/node_modules/is-regex/test/index.js b/node_modules/is-regex/test/index.js
index 93ea4e4..f6c0802 100644
--- a/node_modules/is-regex/test/index.js
+++ b/node_modules/is-regex/test/index.js
@@ -1,7 +1,6 @@
'use strict';
-var hasSymbols = require('has-symbols/shams')();
-var hasToStringTag = hasSymbols && !!Symbol.toStringTag;
+var hasToStringTag = require('has-tostringtag/shams')();
var forEach = require('foreach');
var test = require('tape');
var isRegex = require('..');