[deps] Update EsLint v8.57.1 and plugins

This is need to be able to move to flat config which I am handling
in a separate CL.
The overrides are there as these packages got update today,
so we need to way, but they were last touched 3 years ago,
so reviewing their changes upstream as well.

Bug: none
Change-Id: I61534f881fd4e747c716b42b773f8f7f3e9bc761
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6063618
Commit-Queue: Nikolay Vitkov <[email protected]>
Reviewed-by: Danil Somsikov <[email protected]>
diff --git a/node_modules/es-abstract/2015/RegExpExec.js b/node_modules/es-abstract/2015/RegExpExec.js
index 29fee17..e393c83 100644
--- a/node_modules/es-abstract/2015/RegExpExec.js
+++ b/node_modules/es-abstract/2015/RegExpExec.js
@@ -1,8 +1,6 @@
 'use strict';
 
-var GetIntrinsic = require('get-intrinsic');
-
-var $TypeError = GetIntrinsic('%TypeError%');
+var $TypeError = require('es-errors/type');
 
 var regexExec = require('call-bind/callBound')('RegExp.prototype.exec');
 
@@ -11,19 +9,19 @@
 var IsCallable = require('./IsCallable');
 var Type = require('./Type');
 
-// https://ecma-international.org/ecma-262/6.0/#sec-regexpexec
+// https://262.ecma-international.org/6.0/#sec-regexpexec
 
 module.exports = function RegExpExec(R, S) {
 	if (Type(R) !== 'Object') {
 		throw new $TypeError('Assertion failed: `R` must be an Object');
 	}
-	if (Type(S) !== 'String') {
+	if (typeof S !== 'string') {
 		throw new $TypeError('Assertion failed: `S` must be a String');
 	}
 	var exec = Get(R, 'exec');
 	if (IsCallable(exec)) {
 		var result = Call(exec, R, [S]);
-		if (result === null || Type(result) === 'Object') {
+		if (typeof result === 'object') {
 			return result;
 		}
 		throw new $TypeError('"exec" method must return `null` or an Object');