Upgrade eslint-plugin-import

[email protected]

Bug: none
Change-Id: I0ad7ba9133af3db19c448a284d79bdfc08101dea
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3268294
Commit-Queue: Tim van der Lippe <[email protected]>
Auto-Submit: Tim van der Lippe <[email protected]>
Reviewed-by: Jack Franklin <[email protected]>
diff --git a/node_modules/is-boolean-object/index.js b/node_modules/is-boolean-object/index.js
index 0cd8e77..e1011f6 100644
--- a/node_modules/is-boolean-object/index.js
+++ b/node_modules/is-boolean-object/index.js
@@ -13,7 +13,7 @@
 	}
 };
 var boolClass = '[object Boolean]';
-var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag;
+var hasToStringTag = require('has-tostringtag/shams')();
 
 module.exports = function isBoolean(value) {
 	if (typeof value === 'boolean') {